All Packages Class Hierarchy This Package Previous Next Index
Class vlc.vrml.generic.geometry.CoordinateInterpolator
java.lang.Object
|
+----vlc.vrml.generic.geometry.VrmlObject
|
+----vlc.vrml.generic.geometry.ChildrenNode
|
+----vlc.vrml.generic.geometry.Interpolator
|
+----vlc.vrml.generic.geometry.CoordinateInterpolator
- public class CoordinateInterpolator
- extends Interpolator
JVerge
- Version:
- 0.8 (beta 4)
Copyright 1997
The Virtual Light Company
under the
GNU LGPL
The latest information and bugs in JVerge can be found at
http://www.vlc.com.au/JVerge
For definition of the Anchor node please see the
VRML 97 Anchor specification
- Author:
- Justin Couch justin@vlc.com.au
-
CoordinateInterpolator()
- Default constructor.
-
clone()
- Make a clone of this object
-
get_keyValue()
- Get the current keyValue values
-
set_keyValue(float[][])
- Set the coordinate keyValues to be used.
-
writeToStream(int)
- Prints the formatted contents of this node to the given stream.
CoordinateInterpolator
public CoordinateInterpolator()
- Default constructor. Creates a default CoordinateInterpolator
writeToStream
public void writeToStream(int indent)
- Prints the formatted contents of this node to the given stream.
- Parameters:
- indent - The number of spaces to indent this node in the string
- Overrides:
- writeToStream in class VrmlObject
set_keyValue
public void set_keyValue(float coord[][])
- Set the coordinate keyValues to be used. The length of this array should
exactly correspond to the length of the key array. No checking
is done to enforce this as it is allowable to have different lengths
in the VRML 97 spec.
- Parameters:
- coord - The array of coordinate values where
coodr[i][0] = x, coord[i][1] = y, coord[i][2] = z
get_keyValue
public float[][] get_keyValue()
- Get the current keyValue values
- Returns:
- The array of coord values that are interpolated between where
coord[i][0] = x, coord[i][1] = y, coord[i][2] = z
clone
public Object clone()
- Make a clone of this object
- Returns:
- A deep clone copy of this object
- Overrides:
- clone in class Interpolator
All Packages Class Hierarchy This Package Previous Next Index