com.graphbuilder.geom
Interface Point3d

All Superinterfaces:
Point2d

public interface Point3d
extends Point2d

The Point3d interface represents a three-dimensional point using double precision. This interface is useful when writing general geometry algorithms.


Method Summary
 double getZ()
          Returns the z-coordinate.
 void setLocation(double x, double y, double z)
          Sets the location of the point.
 
Methods inherited from interface com.graphbuilder.geom.Point2d
getX, getY, setLocation
 

Method Detail

setLocation

public void setLocation(double x,
                        double y,
                        double z)
Sets the location of the point.


getZ

public double getZ()
Returns the z-coordinate.