Package org.arakhne.afc.math.geometry.d2
Class ImmutableGeomFactory
- java.lang.Object
-
- org.arakhne.afc.math.geometry.AbstractGeomFactoryBase
-
- org.arakhne.afc.math.geometry.d2.AbstractGeomFactory2D<ImmutableVector2D,ImmutablePoint2D>
-
- org.arakhne.afc.math.geometry.d2.ImmutableGeomFactory
-
- All Implemented Interfaces:
GeomFactory2D<ImmutableVector2D,ImmutablePoint2D>,GeomFactoryBase
public final class ImmutableGeomFactory extends AbstractGeomFactory2D<ImmutableVector2D,ImmutablePoint2D>
Factory of immutable geometrical primitives.- Since:
- 13.0
- Version:
- 17.0 2020-01-04 14:41:43
- Author:
- Stéphane GALLAND
- Maven Group Id:
- org.arakhne.afc.core
- Maven Artifact Id:
- mathgeom
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableGeomFactorySINGLETONSingleton of the factory.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutablePoint2DconvertToPoint(Point2D<?,?> pt)Convert the given point if it is not of the right type.ImmutablePoint2DconvertToPoint(Vector2D<?,?> v)Convert the given vector.ImmutableVector2DconvertToVector(Point2D<?,?> pt)Convert the given point.ImmutableVector2DconvertToVector(Vector2D<?,?> v)Convert the given vector.ImmutablePoint2DnewPoint()Create a point.ImmutablePoint2DnewPoint(double x, double y)Create a point.ImmutablePoint2DnewPoint(int x, int y)Create a point.ImmutableVector2DnewVector()Create a vector.ImmutableVector2DnewVector(double x, double y)Create a vector.ImmutableVector2DnewVector(int x, int y)Create a vector.-
Methods inherited from class org.arakhne.afc.math.geometry.AbstractGeomFactoryBase
getGlobalSplineApproximationRatio, getSplineApproximationRatio, setGlobalSplineApproximationRatio, setSplineApproximationRatio
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.arakhne.afc.math.geometry.GeomFactoryBase
getSplineApproximationRatio, setSplineApproximationRatio
-
-
-
-
Field Detail
-
SINGLETON
public static final ImmutableGeomFactory SINGLETON
Singleton of the factory.
-
-
Method Detail
-
convertToPoint
public ImmutablePoint2D convertToPoint(Point2D<?,?> pt)
Description copied from interface:GeomFactory2DConvert the given point if it is not of the right type.- Parameters:
pt- the point to convert.- Returns:
pif it is of typeP, or a copy ofp.
-
convertToPoint
public ImmutablePoint2D convertToPoint(Vector2D<?,?> v)
Description copied from interface:GeomFactory2DConvert the given vector.- Parameters:
v- the vector to convert.- Returns:
- the point.
-
convertToVector
public ImmutableVector2D convertToVector(Point2D<?,?> pt)
Description copied from interface:GeomFactory2DConvert the given point.- Parameters:
pt- the point to convert.- Returns:
- the vector.
-
convertToVector
public ImmutableVector2D convertToVector(Vector2D<?,?> v)
Description copied from interface:GeomFactory2DConvert the given vector.- Parameters:
v- the vector to convert.- Returns:
- the vector.
-
newPoint
public ImmutablePoint2D newPoint()
Description copied from interface:GeomFactory2DCreate a point.- Returns:
- the point.
-
newPoint
public ImmutablePoint2D newPoint(double x, double y)
Description copied from interface:GeomFactory2DCreate a point.- Parameters:
x- x coordinate of the point.y- y coordinate of the point.- Returns:
- the point.
-
newPoint
public ImmutablePoint2D newPoint(int x, int y)
Description copied from interface:GeomFactory2DCreate a point.- Parameters:
x- x coordinate of the point.y- y coordinate of the point.- Returns:
- the point.
-
newVector
public ImmutableVector2D newVector()
Description copied from interface:GeomFactory2DCreate a vector.- Returns:
- the vector.
-
newVector
public ImmutableVector2D newVector(double x, double y)
Description copied from interface:GeomFactory2DCreate a vector.- Parameters:
x- x coordinate of the vector.y- y coordinate of the vector.- Returns:
- the vector.
-
newVector
public ImmutableVector2D newVector(int x, int y)
Description copied from interface:GeomFactory2DCreate a vector.- Parameters:
x- x coordinate of the vector.y- y coordinate of the vector.- Returns:
- the vector.
-
-