Class InnerComputationGeomFactory
- java.lang.Object
-
- org.arakhne.afc.math.geometry.AbstractGeomFactoryBase
-
- org.arakhne.afc.math.geometry.d1.AbstractGeomFactory1D<InnerComputationVector1afp,InnerComputationPoint1afp>
-
- org.arakhne.afc.math.geometry.d1.afp.InnerComputationGeomFactory
-
- All Implemented Interfaces:
GeomFactory1D<InnerComputationVector1afp,InnerComputationPoint1afp>,GeomFactoryBase
public final class InnerComputationGeomFactory extends AbstractGeomFactory1D<InnerComputationVector1afp,InnerComputationPoint1afp>
Factory of immutable geometrical primitives.- Since:
- 14.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 InnerComputationGeomFactorySINGLETONSingleton of the factory.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InnerComputationPoint1afpconvertToPoint(Point1D<?,?,?> pt)Convert the given point if it is not of the right type.InnerComputationPoint1afpconvertToPoint(Vector1D<?,?,?> v)Convert the given vector if it is not of the right type.InnerComputationVector1afpconvertToVector(Point1D<?,?,?> pt)Convert the given point.InnerComputationVector1afpconvertToVector(Vector1D<?,?,?> v)Convert the given vector.InnerComputationPoint1afpnewPoint(Segment1D<?,?> segment)Create a point.InnerComputationPoint1afpnewPoint(Segment1D<?,?> segment, double x, double y)Create a point.InnerComputationPoint1afpnewPoint(Segment1D<?,?> segment, int x, int y)Create a point.InnerComputationVector1afpnewVector(Segment1D<?,?> segment)Create a vector.InnerComputationVector1afpnewVector(Segment1D<?,?> segment, double x, double y)Create a vector.InnerComputationVector1afpnewVector(Segment1D<?,?> segment, 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 InnerComputationGeomFactory SINGLETON
Singleton of the factory.
-
-
Method Detail
-
convertToPoint
public InnerComputationPoint1afp convertToPoint(Point1D<?,?,?> pt)
Description copied from interface:GeomFactory1DConvert 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 InnerComputationPoint1afp convertToPoint(Vector1D<?,?,?> v)
Description copied from interface:GeomFactory1DConvert the given vector if it is not of the right type.- Parameters:
v- the point to convert.- Returns:
- the point.
-
convertToVector
public InnerComputationVector1afp convertToVector(Point1D<?,?,?> pt)
Description copied from interface:GeomFactory1DConvert the given point.- Parameters:
pt- the point to convert.- Returns:
- the vector.
-
convertToVector
public InnerComputationVector1afp convertToVector(Vector1D<?,?,?> v)
Description copied from interface:GeomFactory1DConvert the given vector.- Parameters:
v- the vector to convert.- Returns:
- the vector.
-
newPoint
public InnerComputationPoint1afp newPoint(Segment1D<?,?> segment)
Description copied from interface:GeomFactory1DCreate a point.- Parameters:
segment- the segment.- Returns:
- the point.
-
newPoint
public InnerComputationPoint1afp newPoint(Segment1D<?,?> segment, double x, double y)
Description copied from interface:GeomFactory1DCreate a point.- Parameters:
segment- the segment.x- x coordinate of the point.y- y coordinate of the point.- Returns:
- the point.
-
newPoint
public InnerComputationPoint1afp newPoint(Segment1D<?,?> segment, int x, int y)
Description copied from interface:GeomFactory1DCreate a point.- Parameters:
segment- the segment.x- x coordinate of the point.y- y coordinate of the point.- Returns:
- the point.
-
newVector
public InnerComputationVector1afp newVector(Segment1D<?,?> segment)
Description copied from interface:GeomFactory1DCreate a vector.- Parameters:
segment- the segment.- Returns:
- the vector.
-
newVector
public InnerComputationVector1afp newVector(Segment1D<?,?> segment, double x, double y)
Description copied from interface:GeomFactory1DCreate a vector.- Parameters:
segment- the segment.x- x coordinate of the vector.y- y coordinate of the vector.- Returns:
- the vector.
-
newVector
public InnerComputationVector1afp newVector(Segment1D<?,?> segment, int x, int y)
Description copied from interface:GeomFactory1DCreate a vector.- Parameters:
segment- the segment.x- x coordinate of the vector.y- y coordinate of the vector.- Returns:
- the vector.
-
-