Point3D (API Reference)
Package com.here.sdk.core
Class Point3D
java.lang.Object
com.here.sdk.core.Point3D
Represents a point in 3D space.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
x
public double xPosition along the X axis. The default value is 0.
-
y
public double yPosition along the Y axis. The default value is 0.
-
z
public double zPosition along the Z axis. The default value is 0.
-
-
Constructor Details
-
Point3D
public Point3D()Constructs Point3D instance at coordinate system's origin.
-
Point3D
public Point3D(double x, double y, double z) Constructs Point3D instance from the provided x,y and z values.
- Parameters:
x-Position along the X axis. The default value is 0.
y-Position along the Y axis. The default value is 0.
z-Position along the Z axis. The default value is 0.
-
-
Method Details