Point3D constructor
- double x,
- double y,
- double z
Constructs Point3D instance from the provided x,y and z values.
xPosition along the X axis. The default value is 0.yPosition along the Y axis. The default value is 0.zPosition along the Z axis. The default value is 0.
Implementation
Point3D(this.x, this.y, this.z);