Class Point3i
java.lang.Object
javax.vecmath.Tuple3i
javax.vecmath.Point3i
- All Implemented Interfaces:
Serializable
A 3 element point that is represented by signed integer x,y,z coordinates.
- Since:
- Java 3D 1.2
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionPoint3i()
Constructs and initializes a Point3i to (0,0,0).Point3i
(int[] t) Constructs and initializes a Point3i from the specified array.Point3i
(int x, int y, int z) Constructs and initializes a Point3i from the specified xyz coordinates.Constructs and initializes a Point3i from the specified Point3i. -
Method Summary
-
Constructor Details
-
Point3i
public Point3i(int x, int y, int z) Constructs and initializes a Point3i from the specified xyz coordinates.- Parameters:
x
- the x coordinatey
- the y coordinatez
- the z coordinate
-
Point3i
public Point3i(int[] t) Constructs and initializes a Point3i from the specified array.- Parameters:
t
- the array of length 3 containing xyz in order
-
Point3i
Constructs and initializes a Point3i from the specified Point3i.- Parameters:
t1
- the Point3i containing the initialization x y z data
-
Point3i
public Point3i()Constructs and initializes a Point3i to (0,0,0).
-