Java Doc for OrientedShape3D.java in  » 6.0-JDK-Modules » java-3d » javax » media » j3d » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » java 3d » javax.media.j3d 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.media.j3d.SceneGraphObject
      javax.media.j3d.Node
         javax.media.j3d.Leaf
            javax.media.j3d.Shape3D
               javax.media.j3d.OrientedShape3D

All known Subclasses:   org.jdesktop.j3dedit.scenegrapheditor.visualtools.PointHighlightShape3D,
OrientedShape3D
public class OrientedShape3D extends Shape3D (Code)
The OrientedShape3D leaf node is a Shape3D node that is oriented along a specified axis or about a specified point. It defines an alignment mode and a rotation point or axis. This will cause the local +z axis of the object to point at the viewer's eye position. This is done regardless of the transforms above this OrientedShape3D node in the scene graph. It optionally defines a scale value along with a constant scale enable flag that causes this node to be scale invariant, subject only to its scale.

OrientedShape3D is similar in functionality to the Billboard behavior, but OrientedShape3D nodes will orient themselves correctly for each view, and they can be used within a SharedGroup.

If the alignment mode is ROTATE_ABOUT_AXIS, then the rotation will be around the specified axis. If the alignment mode is ROTATE_ABOUT_POINT, then the rotation will be about the specified point, with an additional rotation to align the +y axis of the TransformGroup with the +y axis in the View.

If the constant scale enable flag is set, the object will be drawn the same size in absolute screen coordinates (meters), regardless of the following: any transforms above this OrientedShape3D node in the scene graph, the view scale, the window scale, or the effects of perspective correction. This is done by scaling the geometry about the local origin of this node, such that 1 unit in local coordinates is equal to the number of meters specified by this node's scale value. If the constant scale enable flag is set to false, then the scale is not used. The default scale is 1.0 meters.

OrientedShape3D nodes are ideal for drawing screen-aligned text or for drawing roughly-symmetrical objects. A typical use might consist of a quadrilateral that contains a texture of a tree.

Note that in a multiple View system, picking and interestion test is done with the primary View only.
See Also:   Billboard
since:
   Java 3D 1.2



Field Summary
final public static  intALLOW_AXIS_READ
     Specifies that this OrientedShape3D node allows reading its alignment axis information.
final public static  intALLOW_AXIS_WRITE
     Specifies that this OrientedShape3D node allows writing its alignment axis information.
final public static  intALLOW_MODE_READ
     Specifies that this OrientedShape3D node allows reading its alignment mode information.
final public static  intALLOW_MODE_WRITE
     Specifies that this OrientedShape3D node allows writing its alignment mode information.
final public static  intALLOW_POINT_READ
     Specifies that this OrientedShape3D node allows reading its rotation point information.
final public static  intALLOW_POINT_WRITE
     Specifies that this OrientedShape3D node allows writing its rotation point information.
final public static  intALLOW_SCALE_READ
     Specifies that this OrientedShape3D node allows reading its scale and constant scale enable information.
final public static  intALLOW_SCALE_WRITE
     Specifies that this OrientedShape3D node allows writing its scale and constant scale enable information.
final public static  intROTATE_ABOUT_AXIS
     Specifies that rotation should be about the specified axis.
final public static  intROTATE_ABOUT_POINT
     Specifies that rotation should be about the specified point and that the children's Y-axis should match the view object's Y-axis.
final public static  intROTATE_NONE
     Specifies that no rotation is done.

Constructor Summary
public  OrientedShape3D()
     Constructs an OrientedShape3D node with default parameters.
public  OrientedShape3D(Geometry geometry, Appearance appearance, int mode, Vector3f axis)
     Constructs an OrientedShape3D node with the specified geometry component, appearance component, mode, and axis. The specified axis must not be parallel to the Z axis--(0,0,z) for any value of z.
public  OrientedShape3D(Geometry geometry, Appearance appearance, int mode, Point3f point)
     Constructs an OrientedShape3D node with the specified geometry component, appearance component, mode, and rotation point.
public  OrientedShape3D(Geometry geometry, Appearance appearance, int mode, Vector3f axis, boolean constantScaleEnable, double scale)
     Constructs an OrientedShape3D node with the specified geometry component, appearance component, mode, axis, constant scale enable flag, and scale The specified axis must not be parallel to the Z axis--(0,0,z) for any value of z.
public  OrientedShape3D(Geometry geometry, Appearance appearance, int mode, Point3f point, boolean constantScaleEnable, double scale)
     Constructs an OrientedShape3D node with the specified geometry component, appearance component, mode, and rotation point.

Method Summary
public  NodecloneNode(boolean forceDuplicate)
     Used to create a new instance of the node.
 voidcreateRetained()
     Creates the retained mode OrientedShape3DRetained object that this OrientedShape3D object will point to.
 voidduplicateAttributes(Node originalNode, boolean forceDuplicate)
     Copies all Shape3D information from originalNode into the current node.
public  voidduplicateNode(Node originalNode, boolean forceDuplicate)
     Copies all node information from originalNode into the current node.
public  voidgetAlignmentAxis(Vector3f axis)
     Retrieves the alignment axis of this OrientedShape3D node, and copies it into the specified vector.
public  intgetAlignmentMode()
     Retrieves the alignment mode.
public  booleangetConstantScaleEnable()
     Retrieves the constant scale enable flag.
public  voidgetRotationPoint(Point3f point)
     Retrieves the rotation point of this OrientedShape3D node, and copies it into the specified vector.
public  doublegetScale()
     Retrieves the scale value for this OrientedShape3D.
public  voidsetAlignmentAxis(Vector3f axis)
     Sets the new alignment axis.
public  voidsetAlignmentAxis(float x, float y, float z)
     Sets the new alignment axis.
public  voidsetAlignmentMode(int mode)
     Sets the alignment mode.
public  voidsetConstantScaleEnable(boolean constantScaleEnable)
     Sets the constant scale enable flag.
public  voidsetRotationPoint(Point3f point)
     Sets the new rotation point.
public  voidsetRotationPoint(float x, float y, float z)
     Sets the new rotation point.
public  voidsetScale(double scale)
     Sets the scale for this OrientedShape3D.

Field Detail
ALLOW_AXIS_READ
final public static int ALLOW_AXIS_READ(Code)
Specifies that this OrientedShape3D node allows reading its alignment axis information.



ALLOW_AXIS_WRITE
final public static int ALLOW_AXIS_WRITE(Code)
Specifies that this OrientedShape3D node allows writing its alignment axis information.



ALLOW_MODE_READ
final public static int ALLOW_MODE_READ(Code)
Specifies that this OrientedShape3D node allows reading its alignment mode information.



ALLOW_MODE_WRITE
final public static int ALLOW_MODE_WRITE(Code)
Specifies that this OrientedShape3D node allows writing its alignment mode information.



ALLOW_POINT_READ
final public static int ALLOW_POINT_READ(Code)
Specifies that this OrientedShape3D node allows reading its rotation point information.



ALLOW_POINT_WRITE
final public static int ALLOW_POINT_WRITE(Code)
Specifies that this OrientedShape3D node allows writing its rotation point information.



ALLOW_SCALE_READ
final public static int ALLOW_SCALE_READ(Code)
Specifies that this OrientedShape3D node allows reading its scale and constant scale enable information.
since:
   Java 3D 1.3



ALLOW_SCALE_WRITE
final public static int ALLOW_SCALE_WRITE(Code)
Specifies that this OrientedShape3D node allows writing its scale and constant scale enable information.
since:
   Java 3D 1.3



ROTATE_ABOUT_AXIS
final public static int ROTATE_ABOUT_AXIS(Code)
Specifies that rotation should be about the specified axis.
See Also:   OrientedShape3D.setAlignmentMode



ROTATE_ABOUT_POINT
final public static int ROTATE_ABOUT_POINT(Code)
Specifies that rotation should be about the specified point and that the children's Y-axis should match the view object's Y-axis.
See Also:   OrientedShape3D.setAlignmentMode



ROTATE_NONE
final public static int ROTATE_NONE(Code)
Specifies that no rotation is done. The OrientedShape3D will not be aligned to the view.
See Also:   OrientedShape3D.setAlignmentMode
since:
   Java 3D 1.3




Constructor Detail
OrientedShape3D
public OrientedShape3D()(Code)
Constructs an OrientedShape3D node with default parameters. The default values are as follows:
    alignment mode : ROTATE_ABOUT_AXIS
    alignment axis : Y-axis (0,1,0)
    rotation point : (0,0,1)
    constant scale enable : false
    scale : 1.0



OrientedShape3D
public OrientedShape3D(Geometry geometry, Appearance appearance, int mode, Vector3f axis)(Code)
Constructs an OrientedShape3D node with the specified geometry component, appearance component, mode, and axis. The specified axis must not be parallel to the Z axis--(0,0,z) for any value of z. It is not possible for the +Z axis to point at the viewer's eye position by rotating about itself. The target transform will be set to the identity if the axis is (0,0,z).
Parameters:
  geometry - the geometry component with which to initializethis shape node
Parameters:
  appearance - the appearance component of the shape node
Parameters:
  mode - alignment mode, one of: ROTATE_ABOUT_AXIS,ROTATE_ABOUT_POINT, or ROTATE_NONE
Parameters:
  axis - the ray about which the OrientedShape3D rotates



OrientedShape3D
public OrientedShape3D(Geometry geometry, Appearance appearance, int mode, Point3f point)(Code)
Constructs an OrientedShape3D node with the specified geometry component, appearance component, mode, and rotation point.
Parameters:
  geometry - the geometry component with which to initializethis shape node
Parameters:
  appearance - the appearance component of the shape node
Parameters:
  mode - alignment mode, one of: ROTATE_ABOUT_AXIS,ROTATE_ABOUT_POINT, or ROTATE_NONE
Parameters:
  point - the position about which the OrientedShape3D rotates



OrientedShape3D
public OrientedShape3D(Geometry geometry, Appearance appearance, int mode, Vector3f axis, boolean constantScaleEnable, double scale)(Code)
Constructs an OrientedShape3D node with the specified geometry component, appearance component, mode, axis, constant scale enable flag, and scale The specified axis must not be parallel to the Z axis--(0,0,z) for any value of z. It is not possible for the +Z axis to point at the viewer's eye position by rotating about itself. The target transform will be set to the identity if the axis is (0,0,z).
Parameters:
  geometry - the geometry component with which to initializethis shape node
Parameters:
  appearance - the appearance component of the shape node
Parameters:
  mode - alignment mode, one of: ROTATE_ABOUT_AXIS,ROTATE_ABOUT_POINT, or ROTATE_NONE
Parameters:
  axis - the ray about which the OrientedShape3D rotates
Parameters:
  constantScaleEnable - a flag indicating whether to enableconstant scale
Parameters:
  scale - scale value used when constant scale is enabled
since:
   Java 3D 1.3



OrientedShape3D
public OrientedShape3D(Geometry geometry, Appearance appearance, int mode, Point3f point, boolean constantScaleEnable, double scale)(Code)
Constructs an OrientedShape3D node with the specified geometry component, appearance component, mode, and rotation point.
Parameters:
  geometry - the geometry component with which to initializethis shape node
Parameters:
  appearance - the appearance component of the shape node
Parameters:
  mode - alignment mode, one of: ROTATE_ABOUT_AXIS,ROTATE_ABOUT_POINT, or ROTATE_NONE
Parameters:
  point - the position about which the OrientedShape3D rotates
Parameters:
  constantScaleEnable - a flag indicating whether to enableconstant scale
Parameters:
  scale - scale value used when constant scale is enabled
since:
   Java 3D 1.3




Method Detail
cloneNode
public Node cloneNode(boolean forceDuplicate)(Code)
Used to create a new instance of the node. This routine is called by cloneTree to duplicate the current node. cloneNode should be overridden by any user subclassed objects. All subclasses must have their cloneNode method consist of the following lines:

 public Node cloneNode(boolean forceDuplicate) {
 UserSubClass usc = new UserSubClass();
 usc.duplicateNode(this, forceDuplicate);
 return usc;
 }
 

Parameters:
  forceDuplicate - when set to true, causes theduplicateOnCloneTree flag to be ignored. Whenfalse, the value of each node'sduplicateOnCloneTree variable determines whetherNodeComponent data is duplicated or copied.
See Also:   Node.cloneTree
See Also:   Node.duplicateNode
See Also:   NodeComponent.setDuplicateOnCloneTree



createRetained
void createRetained()(Code)
Creates the retained mode OrientedShape3DRetained object that this OrientedShape3D object will point to.



duplicateAttributes
void duplicateAttributes(Node originalNode, boolean forceDuplicate)(Code)
Copies all Shape3D information from originalNode into the current node. This method is called from the cloneNode method which is, in turn, called by the cloneTree method.


Parameters:
  originalNode - the original node to duplicate.
Parameters:
  forceDuplicate - when set to true, causes theduplicateOnCloneTree flag to be ignored. Whenfalse, the value of each node'sduplicateOnCloneTree variable determines whetherNodeComponent data is duplicated or copied.
exception:
  RestrictedAccessException - if this object is part of a liveor compiled scenegraph.
See Also:   Node.duplicateNode
See Also:   Node.cloneTree
See Also:   NodeComponent.setDuplicateOnCloneTree




duplicateNode
public void duplicateNode(Node originalNode, boolean forceDuplicate)(Code)
Copies all node information from originalNode into the current node. This method is called from the cloneNode method which is, in turn, called by the cloneTree method.

For any NodeComponent objects contained by the object being duplicated, each NodeComponent object's duplicateOnCloneTree value is used to determine whether the NodeComponent should be duplicated in the new node or if just a reference to the current node should be placed in the new node. This flag can be overridden by setting the forceDuplicate parameter in the cloneTree method to true.
NOTE: Applications should not call this method directly. It should only be called by the cloneNode method.
Parameters:
  originalNode - the original node to duplicate.
Parameters:
  forceDuplicate - when set to true, causes theduplicateOnCloneTree flag to be ignored. Whenfalse, the value of each node'sduplicateOnCloneTree variable determines whetherNodeComponent data is duplicated or copied.
exception:
  ClassCastException - if originalNode is not an instance of Shape3D
See Also:   Node.cloneTree
See Also:   Node.cloneNode
See Also:   NodeComponent.setDuplicateOnCloneTree




getAlignmentAxis
public void getAlignmentAxis(Vector3f axis)(Code)
Retrieves the alignment axis of this OrientedShape3D node, and copies it into the specified vector.
Parameters:
  axis - the vector that will contain the alignment axis
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph



getAlignmentMode
public int getAlignmentMode()(Code)
Retrieves the alignment mode. one of: ROTATE_ABOUT_AXIS, ROTATE_ABOUT_POINT,or ROTATE_NONE
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph



getConstantScaleEnable
public boolean getConstantScaleEnable()(Code)
Retrieves the constant scale enable flag. the current constant scale enable flag
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph
since:
   Java 3D 1.3



getRotationPoint
public void getRotationPoint(Point3f point)(Code)
Retrieves the rotation point of this OrientedShape3D node, and copies it into the specified vector.
Parameters:
  point - the point that will contain the rotation point
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph



getScale
public double getScale()(Code)
Retrieves the scale value for this OrientedShape3D. the current scale value
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph
since:
   Java 3D 1.3



setAlignmentAxis
public void setAlignmentAxis(Vector3f axis)(Code)
Sets the new alignment axis. This is the ray about which this OrientedShape3D rotates when the mode is ROTATE_ABOUT_AXIS. The specified axis must not be parallel to the Z axis--(0,0,z) for any value of z. It is not possible for the +Z axis to point at the viewer's eye position by rotating about itself. The target transform will be set to the identity if the axis is (0,0,z).
Parameters:
  axis - the new alignment axis
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph



setAlignmentAxis
public void setAlignmentAxis(float x, float y, float z)(Code)
Sets the new alignment axis. This is the ray about which this OrientedShape3D rotates when the mode is ROTATE_ABOUT_AXIS. The specified axis must not be parallel to the Z axis--(0,0,z) for any value of z. It is not possible for the +Z axis to point at the viewer's eye position by rotating about itself. The target transform will be set to the identity if the axis is (0,0,z).
Parameters:
  x - the x component of the alignment axis
Parameters:
  y - the y component of the alignment axis
Parameters:
  z - the z component of the alignment axis
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph



setAlignmentMode
public void setAlignmentMode(int mode)(Code)
Sets the alignment mode.
Parameters:
  mode - alignment mode, one of: ROTATE_ABOUT_AXIS,ROTATE_ABOUT_POINT, or ROTATE_NONE
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph



setConstantScaleEnable
public void setConstantScaleEnable(boolean constantScaleEnable)(Code)
Sets the constant scale enable flag.
Parameters:
  constantScaleEnable - a flag indicating whether to enableconstant scale
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph
since:
   Java 3D 1.3



setRotationPoint
public void setRotationPoint(Point3f point)(Code)
Sets the new rotation point. This is the point about which the OrientedShape3D rotates when the mode is ROTATE_ABOUT_POINT.
Parameters:
  point - the new rotation point
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph



setRotationPoint
public void setRotationPoint(float x, float y, float z)(Code)
Sets the new rotation point. This is the point about which the OrientedShape3D rotates when the mode is ROTATE_ABOUT_POINT.
Parameters:
  x - the x component of the rotation point
Parameters:
  y - the y component of the rotation point
Parameters:
  z - the z component of the rotation point
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph



setScale
public void setScale(double scale)(Code)
Sets the scale for this OrientedShape3D. This scale is used when the constant scale enable flag is set to true.
Parameters:
  scale - the scale value
exception:
  CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph
since:
   Java 3D 1.3



Fields inherited from javax.media.j3d.Shape3D
final public static int ALLOW_APPEARANCE_OVERRIDE_READ(Code)(Java Doc)
final public static int ALLOW_APPEARANCE_OVERRIDE_WRITE(Code)(Java Doc)
final public static int ALLOW_APPEARANCE_READ(Code)(Java Doc)
final public static int ALLOW_APPEARANCE_WRITE(Code)(Java Doc)
final public static int ALLOW_COLLISION_BOUNDS_READ(Code)(Java Doc)
final public static int ALLOW_COLLISION_BOUNDS_WRITE(Code)(Java Doc)
final public static int ALLOW_GEOMETRY_READ(Code)(Java Doc)
final public static int ALLOW_GEOMETRY_WRITE(Code)(Java Doc)
int id(Code)(Java Doc)

Methods inherited from javax.media.j3d.Shape3D
public void addGeometry(Geometry geometry)(Code)(Java Doc)
public Node cloneNode(boolean forceDuplicate)(Code)(Java Doc)
void createRetained()(Code)(Java Doc)
void duplicateAttributes(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
public void duplicateNode(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
public Enumeration getAllGeometries()(Code)(Java Doc)
public Appearance getAppearance()(Code)(Java Doc)
public boolean getAppearanceOverrideEnable()(Code)(Java Doc)
public Bounds getBounds()(Code)(Java Doc)
public Bounds getCollisionBounds()(Code)(Java Doc)
public Geometry getGeometry()(Code)(Java Doc)
public Geometry getGeometry(int index)(Code)(Java Doc)
public int indexOfGeometry(Geometry geometry)(Code)(Java Doc)
public void insertGeometry(Geometry geometry, int index)(Code)(Java Doc)
public boolean intersect(SceneGraphPath path, PickShape pickShape)(Code)(Java Doc)
public boolean intersect(SceneGraphPath path, PickRay pickRay, double[] dist)(Code)(Java Doc)
public boolean intersect(SceneGraphPath path, PickShape pickShape, double[] dist)(Code)(Java Doc)
public int numGeometries()(Code)(Java Doc)
public void removeAllGeometries()(Code)(Java Doc)
public void removeGeometry(int index)(Code)(Java Doc)
public void removeGeometry(Geometry geometry)(Code)(Java Doc)
public void setAppearance(Appearance appearance)(Code)(Java Doc)
public void setAppearanceOverrideEnable(boolean flag)(Code)(Java Doc)
public void setCollisionBounds(Bounds bounds)(Code)(Java Doc)
public void setGeometry(Geometry geometry)(Code)(Java Doc)
public void setGeometry(Geometry geometry, int index)(Code)(Java Doc)


Fields inherited from javax.media.j3d.Node
final public static int ALLOW_AUTO_COMPUTE_BOUNDS_READ(Code)(Java Doc)
final public static int ALLOW_AUTO_COMPUTE_BOUNDS_WRITE(Code)(Java Doc)
final public static int ALLOW_BOUNDS_READ(Code)(Java Doc)
final public static int ALLOW_BOUNDS_WRITE(Code)(Java Doc)
final public static int ALLOW_COLLIDABLE_READ(Code)(Java Doc)
final public static int ALLOW_COLLIDABLE_WRITE(Code)(Java Doc)
final public static int ALLOW_LOCALE_READ(Code)(Java Doc)
final public static int ALLOW_LOCAL_TO_VWORLD_READ(Code)(Java Doc)
final public static int ALLOW_PARENT_READ(Code)(Java Doc)
final public static int ALLOW_PICKABLE_READ(Code)(Java Doc)
final public static int ALLOW_PICKABLE_WRITE(Code)(Java Doc)
final public static int ENABLE_COLLISION_REPORTING(Code)(Java Doc)
final public static int ENABLE_PICK_REPORTING(Code)(Java Doc)

Methods inherited from javax.media.j3d.Node
final void checkDuplicateNode(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
void checkForCycle()(Code)(Java Doc)
public Node cloneNode(boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree()(Code)(Java Doc)
public Node cloneTree(boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree(boolean forceDuplicate, boolean allowDanglingReferences)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable, boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable, boolean forceDuplicate, boolean allowDanglingReferences)(Code)(Java Doc)
Node cloneTree(boolean forceDuplicate, Hashtable nodeHashtable)(Code)(Java Doc)
void duplicateAttributes(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
public void duplicateNode(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
public Bounds getBounds()(Code)(Java Doc)
public boolean getBoundsAutoCompute()(Code)(Java Doc)
public boolean getCollidable()(Code)(Java Doc)
public void getLocalToVworld(Transform3D t)(Code)(Java Doc)
public void getLocalToVworld(SceneGraphPath path, Transform3D t)(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Node getParent()(Code)(Java Doc)
public boolean getPickable()(Code)(Java Doc)
public void setBounds(Bounds bounds)(Code)(Java Doc)
public void setBoundsAutoCompute(boolean autoCompute)(Code)(Java Doc)
public void setCollidable(boolean collidable)(Code)(Java Doc)
public void setPickable(boolean pickable)(Code)(Java Doc)

Fields inherited from javax.media.j3d.SceneGraphObject
Hashtable nodeHashtable(Code)(Java Doc)
SceneGraphObjectRetained retained(Code)(Java Doc)

Methods inherited from javax.media.j3d.SceneGraphObject
final boolean capabilityBitsEmpty()(Code)(Java Doc)
final void checkForLiveOrCompiled()(Code)(Java Doc)
final public void clearCapability(int bit)(Code)(Java Doc)
final public void clearCapabilityIsFrequent(int bit)(Code)(Java Doc)
final void clearLive()(Code)(Java Doc)
void createRetained()(Code)(Java Doc)
protected void duplicateSceneGraphObject(SceneGraphObject originalNode)(Code)(Java Doc)
final public boolean getCapability(int bit)(Code)(Java Doc)
final public boolean getCapabilityIsFrequent(int bit)(Code)(Java Doc)
public String getName()(Code)(Java Doc)
String getNamePrefix()(Code)(Java Doc)
NodeComponent getNodeComponent(NodeComponent originalNodeComponent, boolean forceDuplicate, Hashtable hashtable)(Code)(Java Doc)
public Object getUserData()(Code)(Java Doc)
final public boolean isCompiled()(Code)(Java Doc)
final public boolean isLive()(Code)(Java Doc)
final boolean isLiveOrCompiled()(Code)(Java Doc)
final public void setCapability(int bit)(Code)(Java Doc)
final public void setCapabilityIsFrequent(int bit)(Code)(Java Doc)
final void setCompiled()(Code)(Java Doc)
void setDefaultReadCapabilities(int[] bits)(Code)(Java Doc)
final void setLive()(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void setUserData(Object userData)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void updateNodeReferences(NodeReferenceTable referenceTable)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.