javax.vecmath
public class Point3i extends Tuple3i implements Serializable
Since: Java 3D 1.2
Constructor Summary | |
---|---|
Point3i(int x, int y, int z)
Constructs and initializes a Point3i from the specified xyz coordinates. | |
Point3i(int[] t)
Constructs and initializes a Point3i from the specified array. | |
Point3i(Point3i t1)
Constructs and initializes a Point3i from the specified Point3i. | |
Point3i()
Constructs and initializes a Point3i to (0,0,0). |
Parameters: x the x coordinate y the y coordinate z the z coordinate
Parameters: t the array of length 3 containing xyz in order
Parameters: t1 the Point3i containing the initialization x y z data