Class Point3D
Package com.here.sdk.core
Class Point3D
- java.lang.Object
-
- com.here.sdk.core.Point3D
-
public final class Point3D extends java.lang.ObjectRepresents a point in 3D space.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Constructor Detail
-
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.
-
-