public class Point4i extends Tuple4i implements java.io.Serializable
Constructor and Description |
---|
Point4i()
Constructs and initializes a Point4i to (0,0,0,0).
|
Point4i(int[] t)
Constructs and initializes a Point4i from the specified array.
|
Point4i(int x,
int y,
int z,
int w)
Constructs and initializes a Point4i from the specified xyzw coordinates.
|
Point4i(Point4i t1)
Constructs and initializes a Point4i from the specified Point4i.
|
public Point4i(int x, int y, int z, int w)
x
- the x coordinatey
- the y coordinatez
- the z coordinatew
- the w coordinatepublic Point4i(int[] t)
t
- the array of length 4 containing xyzw in orderpublic Point4i(Point4i t1)
t1
- the Point4i containing the initialization x y z w datapublic Point4i()