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