Package com.graphbuilder.geom
Interface Point3d
The Point3d interface represents a three-dimensional point using double precision.
This interface is useful when writing general geometry algorithms.
-
Method Summary
Modifier and TypeMethodDescriptiondoublegetZ()Returns the z-coordinate.voidsetLocation(double x, double y, double z) Sets the location of the point.Methods inherited from interface com.graphbuilder.curve.Point
getLocation, setLocationMethods inherited from interface com.graphbuilder.geom.Point2d
getX, getY, setLocation
-
Method Details
-
setLocation
void setLocation(double x, double y, double z) Sets the location of the point. -
getZ
double getZ()Returns the z-coordinate.
-