public class PointD extends Object
Represents a pair of x and y coordinates that define a point.
| Modifier and Type | Method and Description |
|---|---|
Object |
clone() |
PointD |
Clone() |
void |
CloneTo(PointD that) |
boolean |
equals(Object obj) |
static boolean |
equals(PointD obj1,
PointD obj2) |
double |
getX()
Gets the x-coordinate of the point.
|
double |
getY()
Gets the y-coordinate of the point.
|
int |
hashCode() |
void |
setX(double value)
Sets the x-coordinate of the point.
|
void |
setY(double value)
Sets the y-coordinate of the point.
|
public PointD Clone()
public void CloneTo(PointD that)
public final double getX()
Gets the x-coordinate of the point.
public final double getY()
Gets the y-coordinate of the point.
public final void setX(double value)
Sets the x-coordinate of the point.
value - The x-coordinate.public final void setY(double value)
Sets the y-coordinate of the point.
value - The y-coordinate.Copyright © 2026. All rights reserved.