Class InnerComputationPoint3afp
- java.lang.Object
-
- org.arakhne.afc.math.geometry.d3.afp.InnerComputationPoint3afp
-
- All Implemented Interfaces:
Serializable,Cloneable,Point3D<InnerComputationPoint3afp,InnerComputationVector3afp>,Tuple3D<InnerComputationPoint3afp>,JsonableObject
public class InnerComputationPoint3afp extends Object implements Point3D<InnerComputationPoint3afp,InnerComputationVector3afp>
A point that is used for internal computations.- Since:
- 13.0
- Version:
- 17.0 2020-01-04 14:41:43
- Author:
- Stéphane GALLAND
- See Also:
- Serialized Form
- Maven Group Id:
- org.arakhne.afc.core
- Maven Artifact Id:
- mathgeom
-
-
Constructor Summary
Constructors Constructor Description InnerComputationPoint3afp()Construct the point.InnerComputationPoint3afp(double x, double y, double z)Construct the point.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InnerComputationPoint3afpclone()Clone this point.InnerComputationGeomFactory3afpgetGeomFactory()Replies the geometry factory associated to this point.doublegetX()Get the x coordinate.doublegetY()Get the y coordinate.doublegetZ()Get the z coordinate.intix()Get the x coordinate.intiy()Get the y coordinate.intiz()Get the z coordinate.voidsetX(double x)Set the x coordinate.voidsetX(int x)Set the x coordinate.voidsetY(double y)Set the y coordinate.voidsetY(int y)Set the y coordinate.voidsetZ(double z)Set the z coordinate.voidsetZ(int z)Set the z coordinate.voidtoJson(JsonBuffer buffer)Replies the Json representation of this node.StringtoString()UnmodifiablePoint3D<InnerComputationPoint3afp,InnerComputationVector3afp>toUnmodifiable()Replies an unmodifiable copy of this vector.-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.arakhne.afc.math.geometry.d3.Point3D
add, add, add, getDistance, getDistanceL1, getDistanceLinf, getDistanceSquared, getIdistanceL1, getIdistanceLinf, operator_add, operator_and, operator_elvis, operator_equals, operator_minus, operator_minus, operator_notEquals, operator_plus, operator_remove, operator_upTo, operator_upTo, scaleAdd, scaleAdd, scaleAdd, scaleAdd, scaleAdd, scaleAdd, sub, sub
-
Methods inherited from interface org.arakhne.afc.math.geometry.d3.Tuple3D
absolute, absolute, add, add, addX, addX, addY, addY, addZ, addZ, clamp, clamp, clamp, clamp, clampMax, clampMax, clampMax, clampMax, clampMin, clampMin, clampMin, clampMin, epsilonEquals, equals, equals, get, get, get, hashCode, interpolate, interpolate, negate, negate, scale, scale, scale, scale, set, set, set, set, set, sub, sub, subX, subX, subY, subY, subZ, subZ
-
-
-
-
Method Detail
-
getGeomFactory
public InnerComputationGeomFactory3afp getGeomFactory()
Description copied from interface:Point3DReplies the geometry factory associated to this point.- Specified by:
getGeomFactoryin interfacePoint3D<InnerComputationPoint3afp,InnerComputationVector3afp>- Returns:
- the factory.
-
toJson
public void toJson(JsonBuffer buffer)
Description copied from interface:JsonableObjectReplies the Json representation of this node.- Specified by:
toJsonin interfaceJsonableObject- Parameters:
buffer- the Json buffer.
-
clone
public InnerComputationPoint3afp clone()
Description copied from interface:Tuple3DClone this point.- Specified by:
clonein interfaceTuple3D<InnerComputationPoint3afp>- Overrides:
clonein classObject- Returns:
- the clone.
-
getX
public double getX()
Description copied from interface:Tuple3DGet the x coordinate.- Specified by:
getXin interfaceTuple3D<InnerComputationPoint3afp>- Returns:
- the x coordinate.
-
ix
public int ix()
Description copied from interface:Tuple3DGet the x coordinate.- Specified by:
ixin interfaceTuple3D<InnerComputationPoint3afp>- Returns:
- the x coordinate.
-
setX
public void setX(int x)
Description copied from interface:Tuple3DSet the x coordinate.- Specified by:
setXin interfaceTuple3D<InnerComputationPoint3afp>- Parameters:
x- value to x coordinate.
-
setX
public void setX(double x)
Description copied from interface:Tuple3DSet the x coordinate.- Specified by:
setXin interfaceTuple3D<InnerComputationPoint3afp>- Parameters:
x- value to x coordinate.
-
getY
public double getY()
Description copied from interface:Tuple3DGet the y coordinate.- Specified by:
getYin interfaceTuple3D<InnerComputationPoint3afp>- Returns:
- the y coordinate.
-
iy
public int iy()
Description copied from interface:Tuple3DGet the y coordinate.- Specified by:
iyin interfaceTuple3D<InnerComputationPoint3afp>- Returns:
- the y coordinate.
-
setY
public void setY(int y)
Description copied from interface:Tuple3DSet the y coordinate.- Specified by:
setYin interfaceTuple3D<InnerComputationPoint3afp>- Parameters:
y- value to y coordinate.
-
setY
public void setY(double y)
Description copied from interface:Tuple3DSet the y coordinate.- Specified by:
setYin interfaceTuple3D<InnerComputationPoint3afp>- Parameters:
y- value to y coordinate.
-
getZ
public double getZ()
Description copied from interface:Tuple3DGet the z coordinate.- Specified by:
getZin interfaceTuple3D<InnerComputationPoint3afp>- Returns:
- the z coordinate.
-
iz
public int iz()
Description copied from interface:Tuple3DGet the z coordinate.- Specified by:
izin interfaceTuple3D<InnerComputationPoint3afp>- Returns:
- the z coordinate.
-
setZ
public void setZ(int z)
Description copied from interface:Tuple3DSet the z coordinate.- Specified by:
setZin interfaceTuple3D<InnerComputationPoint3afp>- Parameters:
z- value to z coordinate.
-
setZ
public void setZ(double z)
Description copied from interface:Tuple3DSet the z coordinate.- Specified by:
setZin interfaceTuple3D<InnerComputationPoint3afp>- Parameters:
z- value to z coordinate.
-
toUnmodifiable
public UnmodifiablePoint3D<InnerComputationPoint3afp,InnerComputationVector3afp> toUnmodifiable()
Description copied from interface:Point3DReplies an unmodifiable copy of this vector.- Specified by:
toUnmodifiablein interfacePoint3D<InnerComputationPoint3afp,InnerComputationVector3afp>- Returns:
- an unmodifiable copy.
-
-