javax.vecmath
Class Point3i
java.lang.Object
javax.vecmath.Tuple3i
javax.vecmath.Point3i
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
public class Point3i
- extends Tuple3i
- implements java.io.Serializable
A 3 element point represented by signed integer x,y,z
coordinates.
- Since:
- vecmath 1.2
- See Also:
- Serialized Form
Fields inherited from class javax.vecmath.Tuple3i |
x, y, z |
Constructor Summary |
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. |
Methods inherited from class javax.vecmath.Tuple3i |
absolute, absolute, add, add, clamp, clamp, clampMax, clampMax, clampMin, clampMin, clone, equals, get, get, getX, getY, getZ, hashCode, negate, negate, scale, scale, scaleAdd, scaleAdd, set, set, set, setX, setY, setZ, sub, sub, toString |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
serialVersionUID
static final long serialVersionUID
- See Also:
- Constant Field Values
Point3i
public Point3i(int x,
int y,
int z)
- Constructs and initializes a Point3i from the specified
x, y, and z coordinates.
- Parameters:
x
- the x coordinatey
- the y coordinatez
- the z coordinate
Point3i
public Point3i(int[] t)
- Constructs and initializes a Point3i from the array of length 3.
- Parameters:
t
- the array of length 3 containing x, y, and z in order.
Point3i
public Point3i(Tuple3i t1)
- Constructs and initializes a Point3i from the specified Tuple3i.
- Parameters:
t1
- the Tuple3i containing the initialization x, y, and z
data.
Point3i
public Point3i()
- Constructs and initializes a Point3i to (0,0,0).
Copyright 1996-2008 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms.