Java Doc for Billboard.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.Behavior
               javax.media.j3d.Billboard

Billboard
public class Billboard extends Behavior (Code)
The Billboard behavior node operates on the TransformGroup node to cause the local +z axis of the TransformGroup to point at the viewer's eye position. This is done regardless of the transforms above the specified TransformGroup node in the scene graph.

If the alignment mode is ROTATE_ABOUT_AXIS, the rotation will be around the specified axis. If the alignment mode is ROTATE_ABOUT_POINT, 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.

Note that in a multiple View system, the alignment is done to the primary View only.

Billboard 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.
See Also:   OrientedShape3D



Field Summary
final static  doubleEPSILON
    
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.
 Vector3faxis
    
 intmode
    
 Point3frotationPoint
    
 TransformGrouptg
    
 WakeupOnElapsedFrameswakeupFrame
    

Constructor Summary
public  Billboard()
     Constructs a Billboard node with default parameters.
public  Billboard(TransformGroup tg)
     Constructs a Billboard node with default parameters that operates on the specified TransformGroup node.
public  Billboard(TransformGroup tg, int mode, Vector3f axis)
     Constructs a Billboard node with the specified axis and mode that operates on the specified TransformGroup node. The specified axis must not be parallel to the Z axis--(0,0,z) for any value of z.
public  Billboard(TransformGroup tg, int mode, Point3f point)
     Constructs a Billboard node with the specified rotation point and mode that operates on the specified TransformGroup node.

Method Summary
public  NodecloneNode(boolean forceDuplicate)
     Creates a new instance of the node.
 voidduplicateAttributes(Node originalNode, boolean forceDuplicate)
     Copies all Billboard information from originalNode into the current node.
public  voidgetAlignmentAxis(Vector3f axis)
     Gets the alignment axis and sets the parameter to this value.
public  intgetAlignmentMode()
     Gets the alignment mode.
public  voidgetRotationPoint(Point3f point)
     Gets the rotation point and sets the parameter to this value.
public  TransformGroupgetTarget()
     Returns a copy of the transformGroup associated with this Billboard.
public  voidinitialize()
     Initialize method that sets up initial wakeup criteria.
public  voidprocessStimulus(Enumeration criteria)
     Process stimulus method that computes appropriate transform.
public  voidsetAlignmentAxis(Vector3f axis)
     Sets the alignment axis. The specified axis must not be parallel to the Z axis--(0,0,z) for any value of z.
public  voidsetAlignmentAxis(float x, float y, float z)
     Sets the alignment axis. The specified axis must not be parallel to the Z axis--(0,0,z) for any value of z.
public  voidsetAlignmentMode(int mode)
     Sets the alignment mode.
public  voidsetRotationPoint(Point3f point)
     Sets the rotation point.
public  voidsetRotationPoint(float x, float y, float z)
     Sets the rotation point.
public  voidsetTarget(TransformGroup tg)
     Sets the tranformGroup for this Billboard object.
public  voidupdateNodeReferences(NodeReferenceTable referenceTable)
     Callback used to allow a node to check if any scene graph objects referenced by that node have been duplicated via a call to cloneTree. This method is called by cloneTree after all nodes in the sub-graph have been duplicated.

Field Detail
EPSILON
final static double EPSILON(Code)



ROTATE_ABOUT_AXIS
final public static int ROTATE_ABOUT_AXIS(Code)
Specifies that rotation should be about the specified axis.



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.



axis
Vector3f axis(Code)



mode
int mode(Code)



rotationPoint
Point3f rotationPoint(Code)



tg
TransformGroup tg(Code)



wakeupFrame
WakeupOnElapsedFrames wakeupFrame(Code)




Constructor Detail
Billboard
public Billboard()(Code)
Constructs a Billboard 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)
    target transform group: null



Billboard
public Billboard(TransformGroup tg)(Code)
Constructs a Billboard node with default parameters that operates on the specified TransformGroup node. The default alignment mode is ROTATE_ABOUT_AXIS rotation with the axis pointing along the Y axis.
Parameters:
  tg - the TransformGroup node that this Billboardnode operates upon



Billboard
public Billboard(TransformGroup tg, int mode, Vector3f axis)(Code)
Constructs a Billboard node with the specified axis and mode that operates on the specified TransformGroup node. 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:
  tg - the TransformGroup node that this Billboardnode operates upon
Parameters:
  mode - alignment mode, one of ROTATE_ABOUT_AXIS or ROTATE_ABOUT_POINT
Parameters:
  axis - the ray about which the billboard rotates



Billboard
public Billboard(TransformGroup tg, int mode, Point3f point)(Code)
Constructs a Billboard node with the specified rotation point and mode that operates on the specified TransformGroup node.
Parameters:
  tg - the TransformGroup node that this Billboardnode operates upon
Parameters:
  mode - alignment mode, one of ROTATE_ABOUT_AXIS or ROTATE_ABOUT_POINT
Parameters:
  point - the position about which the billboard rotates




Method Detail
cloneNode
public Node cloneNode(boolean forceDuplicate)(Code)
Creates a new instance of the node. This routine is called by cloneTree to duplicate the current node.
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.cloneNode
See Also:   Node.duplicateNode
See Also:   NodeComponent.setDuplicateOnCloneTree



duplicateAttributes
void duplicateAttributes(Node originalNode, boolean forceDuplicate)(Code)
Copies all Billboard 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




getAlignmentAxis
public void getAlignmentAxis(Vector3f axis)(Code)
Gets the alignment axis and sets the parameter to this value.
Parameters:
  axis - the vector that will contain the ray about whichthe billboard rotates



getAlignmentMode
public int getAlignmentMode()(Code)
Gets the alignment mode. one of: ROTATE_ABOUT_AXIS or ROTATE_ABOUT_POINT



getRotationPoint
public void getRotationPoint(Point3f point)(Code)
Gets the rotation point and sets the parameter to this value.
Parameters:
  point - the position the Billboard rotates about



getTarget
public TransformGroup getTarget()(Code)
Returns a copy of the transformGroup associated with this Billboard. the TranformGroup for this Billboard



initialize
public void initialize()(Code)
Initialize method that sets up initial wakeup criteria.



processStimulus
public void processStimulus(Enumeration criteria)(Code)
Process stimulus method that computes appropriate transform.
Parameters:
  criteria - an enumeration of the criteria that caused thestimulus



setAlignmentAxis
public void setAlignmentAxis(Vector3f axis)(Code)
Sets the alignment 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 ray about which the billboard rotates



setAlignmentAxis
public void setAlignmentAxis(float x, float y, float z)(Code)
Sets the alignment 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 ray about which the billboard rotates
Parameters:
  y - the y component of the ray about which the billboard rotates
Parameters:
  z - the z component of the ray about which the billboard rotates



setAlignmentMode
public void setAlignmentMode(int mode)(Code)
Sets the alignment mode.
Parameters:
  mode - one of: ROTATE_ABOUT_AXIS or ROTATE_ABOUT_POINT



setRotationPoint
public void setRotationPoint(Point3f point)(Code)
Sets the rotation point.
Parameters:
  point - the point about which the billboard rotates



setRotationPoint
public void setRotationPoint(float x, float y, float z)(Code)
Sets the rotation point.
Parameters:
  x - the x component of the point about which the billboard rotates
Parameters:
  y - the y component of the point about which the billboard rotates
Parameters:
  z - the z component of the point about which the billboard rotates



setTarget
public void setTarget(TransformGroup tg)(Code)
Sets the tranformGroup for this Billboard object.
Parameters:
  tg - the transformGroup node which replaces the currenttransformGroup node for this Billboard



updateNodeReferences
public void updateNodeReferences(NodeReferenceTable referenceTable)(Code)
Callback used to allow a node to check if any scene graph objects referenced by that node have been duplicated via a call to cloneTree. This method is called by cloneTree after all nodes in the sub-graph have been duplicated. The cloned Leaf node's method will be called and the Leaf node can then look up any object references by using the getNewObjectReference method found in the NodeReferenceTable object. If a match is found, a reference to the corresponding object in the newly cloned sub-graph is returned. If no corresponding reference is found, either a DanglingReferenceException is thrown or a reference to the original object is returned depending on the value of the allowDanglingReferences parameter passed in the cloneTree call.

NOTE: Applications should not call this method directly. It should only be called by the cloneTree method.
Parameters:
  referenceTable - a NodeReferenceTableObject that contains thegetNewObjectReference method needed to search fornew object instances.
See Also:   NodeReferenceTable
See Also:   Node.cloneTree
See Also:   DanglingReferenceException




Methods inherited from javax.media.j3d.Behavior
void createRetained()(Code)(Java Doc)
void duplicateAttributes(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
public boolean getEnable()(Code)(Java Doc)
public static int getNumSchedulingIntervals()(Code)(Java Doc)
public BoundingLeaf getSchedulingBoundingLeaf()(Code)(Java Doc)
public Bounds getSchedulingBounds()(Code)(Java Doc)
public int getSchedulingInterval()(Code)(Java Doc)
protected View getView()(Code)(Java Doc)
protected WakeupCondition getWakeupCondition()(Code)(Java Doc)
abstract public void initialize()(Code)(Java Doc)
public void postId(int postId)(Code)(Java Doc)
abstract public void processStimulus(Enumeration criteria)(Code)(Java Doc)
public void setEnable(boolean state)(Code)(Java Doc)
public void setSchedulingBoundingLeaf(BoundingLeaf region)(Code)(Java Doc)
public void setSchedulingBounds(Bounds region)(Code)(Java Doc)
public void setSchedulingInterval(int schedulingInterval)(Code)(Java Doc)
public void updateNodeReferences(NodeReferenceTable referenceTable)(Code)(Java Doc)
protected void wakeupOn(WakeupCondition criteria)(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.