Package org.arakhne.afc.math.geometry.d2
Class ImmutablePoint2D
- java.lang.Object
-
- org.arakhne.afc.math.geometry.d2.ImmutablePoint2D
-
- All Implemented Interfaces:
Serializable,Cloneable,Point2D<ImmutablePoint2D,ImmutableVector2D>,Tuple2D<ImmutablePoint2D>,UnmodifiablePoint2D<ImmutablePoint2D,ImmutableVector2D>,UnmodifiableTuple2D<ImmutablePoint2D>,JsonableObject
public final class ImmutablePoint2D extends Object implements UnmodifiablePoint2D<ImmutablePoint2D,ImmutableVector2D>
Immutable point 2D.- 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 ImmutablePoint2D(double x, double y)Constructor.ImmutablePoint2D(int x, int y)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutablePoint2Dclone()Clone this point.booleanequals(Object object)Returns true if the Object t1 is of type Tuple2D and all of the data members of t1 are equal to the corresponding data members in this Tuple2D.ImmutableGeomFactorygetGeomFactory()Replies the geometry factory associated to this point.doublegetX()Get the x coordinate.doublegetY()Get the y coordinate.inthashCode()Returns a hash code value based on the data values in this object.intix()Get the x coordinate.intiy()Get the y coordinate.voidtoJson(JsonBuffer buffer)Replies the Json representation of this node.StringtoString()-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.arakhne.afc.math.geometry.d2.Point2D
$amp$amp, $minus, $minus, $minus, $plus, $plus, getDistance, getDistanceL1, getDistanceLinf, getDistanceSquared, getIdistanceL1, getIdistanceLinf, operator_and, operator_elvis, operator_equals, operator_minus, operator_minus, operator_minus, operator_notEquals, operator_plus, operator_plus, operator_upTo, operator_upTo
-
Methods inherited from interface org.arakhne.afc.math.geometry.d2.Tuple2D
epsilonEquals, equals, get, get, get
-
Methods inherited from interface org.arakhne.afc.math.geometry.d2.UnmodifiablePoint2D
add, add, add, operator_add, operator_remove, scaleAdd, scaleAdd, scaleAdd, scaleAdd, scaleAdd, scaleAdd, sub, sub, toUnmodifiable, turn, turn, turn, turnLeft, turnLeft, turnLeft, turnRight, turnRight, turnRight
-
Methods inherited from interface org.arakhne.afc.math.geometry.d2.UnmodifiableTuple2D
absolute, absolute, add, add, addX, addX, addY, addY, clamp, clamp, clamp, clamp, clampMax, clampMax, clampMax, clampMax, clampMin, clampMin, clampMin, clampMin, interpolate, interpolate, negate, negate, scale, scale, scale, scale, set, set, set, set, set, setX, setX, setY, setY, sub, sub, subX, subX, subY, subY
-
-
-
-
Method Detail
-
getGeomFactory
public ImmutableGeomFactory getGeomFactory()
Description copied from interface:Point2DReplies the geometry factory associated to this point.- Specified by:
getGeomFactoryin interfacePoint2D<ImmutablePoint2D,ImmutableVector2D>- Returns:
- the factory.
-
equals
@Pure public boolean equals(Object object)
Description copied from interface:Tuple2DReturns true if the Object t1 is of type Tuple2D and all of the data members of t1 are equal to the corresponding data members in this Tuple2D.- Specified by:
equalsin interfaceTuple2D<ImmutablePoint2D>- Overrides:
equalsin classObject- Parameters:
object- the object with which the comparison is made- Returns:
- true or false
-
hashCode
@Pure public int hashCode()
Description copied from interface:Tuple2DReturns a hash code value based on the data values in this object. Two differentTuple2Dobjects with identical data values (i.e.,Tuple2D.equals(Object)returns true) will return the same hash code value. Two objects with different data members may return the same hash value, although this is not likely.- Specified by:
hashCodein interfaceTuple2D<ImmutablePoint2D>- Overrides:
hashCodein classObject- Returns:
- the integer hash code value
-
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
@Pure public ImmutablePoint2D clone()
Description copied from interface:Tuple2DClone this point.- Specified by:
clonein interfaceTuple2D<ImmutablePoint2D>- Overrides:
clonein classObject- Returns:
- the clone.
-
getX
@Pure public double getX()
Description copied from interface:Tuple2DGet the x coordinate.- Specified by:
getXin interfaceTuple2D<ImmutablePoint2D>- Returns:
- the x coordinate.
-
ix
@Pure public int ix()
Description copied from interface:Tuple2DGet the x coordinate.- Specified by:
ixin interfaceTuple2D<ImmutablePoint2D>- Returns:
- the x coordinate.
-
getY
@Pure public double getY()
Description copied from interface:Tuple2DGet the y coordinate.- Specified by:
getYin interfaceTuple2D<ImmutablePoint2D>- Returns:
- the y coordinate.
-
iy
@Pure public int iy()
Description copied from interface:Tuple2DGet the y coordinate.- Specified by:
iyin interfaceTuple2D<ImmutablePoint2D>- Returns:
- the y coordinate.
-
-