Interface Point3d

All Superinterfaces:
Point, 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

    Modifier and Type
    Method
    Description
    double
    Returns the z-coordinate.
    void
    setLocation(double x, double y, double z)
    Sets the location of the point.

    Methods inherited from interface com.graphbuilder.curve.Point

    getLocation, setLocation

    Methods 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.