Serializable
, Cloneable
public class Point3i extends Tuple3i implements Serializable
Constructor | Description |
---|---|
Point3i() |
Constructs and initializes a Point3i to (0,0,0).
|
Point3i(int[] t) |
Constructs and initializes a Point3i from the array of length 3.
|
Point3i(int x,
int y,
int z) |
Constructs and initializes a Point3i from the specified
x, y, and z coordinates.
|
Point3i(Tuple3i t1) |
Constructs and initializes a Point3i from the specified Tuple3i.
|
public Point3i(int x, int y, int z)
x
- the x coordinatey
- the y coordinatez
- the z coordinatepublic Point3i(int[] t)
t
- the array of length 3 containing x, y, and z in order.public Point3i(Tuple3i t1)
t1
- the Tuple3i containing the initialization x, y, and z
data.public Point3i()