Class Point3D.P

All Implemented Interfaces:
Serializable, Comparable, TemporalComputedObject3D, MatrixPropertiesObject, XmlRepresentable
Enclosing class:
Point3D

public class Point3D.P extends Point3D
The P class is a subclass of the Point3D class. It represents a point in a three-dimensional coordinate system.

The P class does not have any additional properties or methods and inherits all the properties and methods from the Point3D class.

Example usage:

     P point = new P();
     point.setX(2);
     point.setY(3);
     point.setZ(4);
 
See Also:
  • Constructor Details

    • P

      public P()