Java Doc for PickViewerBehavior.java in  » 6.0-JDK-Modules » java-3d » com » db » behaviors » 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 » com.db.behaviors 
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
               com.db.behaviors.PickViewerBehavior

All known Subclasses:   com.db.behaviors.StandardPickViewer,
PickViewerBehavior
abstract public class PickViewerBehavior extends Behavior (Code)
A mouse behavior that allows user to pick and minipulate scene graph objects. Manipulations include translation, rotation and zoom. The behavior maps mouse drags to different transforms depending upon the mosue button held down: Button 1 (left) Translation of dragged object Button 2 (middle) Rotation of dragged object around itself Button 3 (right) Zoom of dragged object towards user To support systems with 2 or 1 mouse buttons, the following alternate mappings are supported while dragging with any mouse button held down and zero or more keyboard modifiers held down: No modifiers = Button 1 ALT = Button 2 Meta = Button 3 Control = Button 3 Common usage:

1. Create your scene graph.

2. Create this behavior with root and canvas.

 StandardPickViewerBehavior behavior = new StandardPickViewerBehavior(canvas, root, bounds);
 root.addChild(behavior);
 

The above behavior will monitor for any picking events on the scene graph (below root node) and handle mouse drags on pick hits. Note the root node can also be a subgraph node of the scene graph (rather than the topmost).



Field Summary
final protected static  intBUTTON1
    
final protected static  intBUTTON2
    
final protected static  intBUTTON3
    
final protected static  intBUTTONNONE
    
final public static  floatDEFAULT_HIGHLIGHT_LEVEL
    
final public static  CursorDEFAULT_PICK_ACTIVE_CURSOR
    
final public static  doubleDEFAULT_XROTATION_FACTOR
     Default X and Y rotation factors, and XYZ translation factors.
final public static  doubleDEFAULT_XTRANSLATION_FACTOR
    
final public static  doubleDEFAULT_YROTATION_FACTOR
    
final public static  doubleDEFAULT_YTRANSLATION_FACTOR
    
final public static  doubleDEFAULT_ZTRANSLATION_FACTOR
    
final protected static  intUNUSUAL_XDELTA
    
final protected static  intUNUSUAL_YDELTA
    
protected  doubleXRotationFactor
    
protected  doubleXTranslationFactor
    
protected  doubleYRotationFactor
    
protected  doubleYTranslationFactor
    
protected  doubleZTranslationFactor
    
protected  CursoractiveCursor
    
protected  intbuttonPressed
    
protected  Transform3DcurrentTransform
    
protected  floathighlightLevel
    
protected  Matrix4dmatrix
    
protected  WakeupOrmouseCriterion
    
protected  WakeupCriterion[]mouseEvents
    
protected  Vector3dorigin
    
protected  Canvas3DparentCanvas3D
    
protected  intpickMode
    
protected  PickObjectpickScene
    
protected  BranchGroupsubjectBranchGroup
    
protected  TransformGroupsubjectTransformGroup
    
protected  Transform3Dtransform1
    
protected  Transform3Dtransform2
    
protected  Vector3dtranslate
    

Constructor Summary
public  PickViewerBehavior()
     Construct a viewer behavior that listens to mouse movement and button presses to generate rotation and translation transforms written into a transform group given later with the setTransformGroup( ) method.
public  PickViewerBehavior(Canvas3D parent)
     Construct a viewer behavior that listens to mouse movement and button presses to generate rotation and translation transforms written into a transform group given later with the setTransformGroup( ) method.
public  PickViewerBehavior(BranchGroup branchGroup)
     Construct a viewer behavior that listens to mouse movement and button presses to generate rotation and translation transforms written into the given transform group.
public  PickViewerBehavior(BranchGroup branchGroup, Canvas3D parent)
     Construct a viewer behavior that listens to mouse movement and button presses to generate rotation and translation transforms written into the given transform group.

Method Summary
public  CursorgetActiveCursor()
     Get the active cursor we work with when an event occurs.
public  BranchGroupgetBranchGroup()
     Get the transform group modified by the viewer behavior.
public  floatgetHighlightLevel()
    
public  Canvas3DgetParentComponent()
    
public  intgetPickMode()
     Return the pickMode component of this PickRotateBehavior.
public  doublegetXRotationFactor()
     Get the current X rotation scaling factor for X-axis rotations.
public  doublegetXTranslationFactor()
     Get the current X translation scaling factor for X-axis translations.
public  doublegetYRotationFactor()
     Get the current Y rotation scaling factor for Y-axis rotations.
public  doublegetYTranslationFactor()
     Get the current Y translation scaling factor for Y-axis translations.
public  doublegetZTranslationFactor()
     Get the current Z translation scaling factor for Z-axis translations.
protected  Color3fhighlightColor(Color3f color3f)
    
protected  MaterialhighlightMaterial(Material material)
    
public  voidinitialize()
     Initialize the behavior.
abstract public  voidonButton1(MouseEvent mouseEvent)
     Respond to a button1 event (press, release, or drag).
abstract public  voidonButton2(MouseEvent mouseEvent)
     Respond to a button2 event (press, release, or drag).
abstract public  voidonButton3(MouseEvent mouseEvent)
     Responed to a button3 event (press, release, or drag).
abstract public  voidonElapsedFrames(WakeupOnElapsedFrames timeEvent)
     Respond to an elapsed frames event (assuming subclass has set up a wakeup criterion for it).
public  voidprocessStimulus(Enumeration criteria)
     Process a new wakeup.
public  voidsetActiveCursor(Cursor cursor)
     Set the active cursor to work with when an event occurs.
public  voidsetBranchGroup(BranchGroup branchGroup)
     Set the transform group modified by the viewer behavior.
public  voidsetHighlightLevel(float level)
    
public  voidsetParentComponent(Canvas3D parent)
     Sets the parent component who's cursor will be changed during mouse drags.
public  voidsetPickMode(int pickMode)
     Sets the pickMode component of this PickRotateBehavior to the value of the passed pickMode.
public  voidsetXRotationFactor(double factor)
     Set the X rotation scaling factor for X-axis rotations.
public  voidsetXTranslationFactor(double factor)
     Set the X translation scaling factor for X-axis translations.
public  voidsetYRotationFactor(double factor)
     Set the Y rotation scaling factor for Y-axis rotations.
public  voidsetYTranslationFactor(double factor)
     Set the Y translation scaling factor for Y-axis translations.
public  voidsetZTranslationFactor(double factor)
     Set the Z translation scaling factor for Z-axis translations.

Field Detail
BUTTON1
final protected static int BUTTON1(Code)



BUTTON2
final protected static int BUTTON2(Code)



BUTTON3
final protected static int BUTTON3(Code)



BUTTONNONE
final protected static int BUTTONNONE(Code)



DEFAULT_HIGHLIGHT_LEVEL
final public static float DEFAULT_HIGHLIGHT_LEVEL(Code)



DEFAULT_PICK_ACTIVE_CURSOR
final public static Cursor DEFAULT_PICK_ACTIVE_CURSOR(Code)



DEFAULT_XROTATION_FACTOR
final public static double DEFAULT_XROTATION_FACTOR(Code)
Default X and Y rotation factors, and XYZ translation factors.



DEFAULT_XTRANSLATION_FACTOR
final public static double DEFAULT_XTRANSLATION_FACTOR(Code)



DEFAULT_YROTATION_FACTOR
final public static double DEFAULT_YROTATION_FACTOR(Code)



DEFAULT_YTRANSLATION_FACTOR
final public static double DEFAULT_YTRANSLATION_FACTOR(Code)



DEFAULT_ZTRANSLATION_FACTOR
final public static double DEFAULT_ZTRANSLATION_FACTOR(Code)



UNUSUAL_XDELTA
final protected static int UNUSUAL_XDELTA(Code)



UNUSUAL_YDELTA
final protected static int UNUSUAL_YDELTA(Code)



XRotationFactor
protected double XRotationFactor(Code)



XTranslationFactor
protected double XTranslationFactor(Code)



YRotationFactor
protected double YRotationFactor(Code)



YTranslationFactor
protected double YTranslationFactor(Code)



ZTranslationFactor
protected double ZTranslationFactor(Code)



activeCursor
protected Cursor activeCursor(Code)



buttonPressed
protected int buttonPressed(Code)



currentTransform
protected Transform3D currentTransform(Code)



highlightLevel
protected float highlightLevel(Code)



matrix
protected Matrix4d matrix(Code)



mouseCriterion
protected WakeupOr mouseCriterion(Code)



mouseEvents
protected WakeupCriterion[] mouseEvents(Code)



origin
protected Vector3d origin(Code)



parentCanvas3D
protected Canvas3D parentCanvas3D(Code)



pickMode
protected int pickMode(Code)



pickScene
protected PickObject pickScene(Code)



subjectBranchGroup
protected BranchGroup subjectBranchGroup(Code)



subjectTransformGroup
protected TransformGroup subjectTransformGroup(Code)



transform1
protected Transform3D transform1(Code)



transform2
protected Transform3D transform2(Code)



translate
protected Vector3d translate(Code)




Constructor Detail
PickViewerBehavior
public PickViewerBehavior()(Code)
Construct a viewer behavior that listens to mouse movement and button presses to generate rotation and translation transforms written into a transform group given later with the setTransformGroup( ) method.



PickViewerBehavior
public PickViewerBehavior(Canvas3D parent)(Code)
Construct a viewer behavior that listens to mouse movement and button presses to generate rotation and translation transforms written into a transform group given later with the setTransformGroup( ) method.
Parameters:
  parent - The AWT Component that contains the areagenerating mouse events.



PickViewerBehavior
public PickViewerBehavior(BranchGroup branchGroup)(Code)
Construct a viewer behavior that listens to mouse movement and button presses to generate rotation and translation transforms written into the given transform group.
Parameters:
  transformGroup - The transform group to be modifiedby the behavior.



PickViewerBehavior
public PickViewerBehavior(BranchGroup branchGroup, Canvas3D parent)(Code)
Construct a viewer behavior that listens to mouse movement and button presses to generate rotation and translation transforms written into the given transform group.
Parameters:
  transformGroup - The transform group to be modifiedby the behavior.
Parameters:
  parent - The AWT Component that contains the areagenerating mouse events.




Method Detail
getActiveCursor
public Cursor getActiveCursor()(Code)
Get the active cursor we work with when an event occurs.
Parameters:
  cursor - The cursor active when the user picks something.



getBranchGroup
public BranchGroup getBranchGroup()(Code)
Get the transform group modified by the viewer behavior.



getHighlightLevel
public float getHighlightLevel()(Code)



getParentComponent
public Canvas3D getParentComponent()(Code)



getPickMode
public int getPickMode()(Code)
Return the pickMode component of this PickRotateBehavior.



getXRotationFactor
public double getXRotationFactor()(Code)
Get the current X rotation scaling factor for X-axis rotations.



getXTranslationFactor
public double getXTranslationFactor()(Code)
Get the current X translation scaling factor for X-axis translations.



getYRotationFactor
public double getYRotationFactor()(Code)
Get the current Y rotation scaling factor for Y-axis rotations.



getYTranslationFactor
public double getYTranslationFactor()(Code)
Get the current Y translation scaling factor for Y-axis translations.



getZTranslationFactor
public double getZTranslationFactor()(Code)
Get the current Z translation scaling factor for Z-axis translations.



highlightColor
protected Color3f highlightColor(Color3f color3f)(Code)



highlightMaterial
protected Material highlightMaterial(Material material)(Code)



initialize
public void initialize()(Code)
Initialize the behavior.



onButton1
abstract public void onButton1(MouseEvent mouseEvent)(Code)
Respond to a button1 event (press, release, or drag).
Parameters:
  mouseEvent - A MouseEvent to respond to.



onButton2
abstract public void onButton2(MouseEvent mouseEvent)(Code)
Respond to a button2 event (press, release, or drag).
Parameters:
  mouseEvent - A MouseEvent to respond to.



onButton3
abstract public void onButton3(MouseEvent mouseEvent)(Code)
Responed to a button3 event (press, release, or drag).
Parameters:
  mouseEvent - A MouseEvent to respond to.



onElapsedFrames
abstract public void onElapsedFrames(WakeupOnElapsedFrames timeEvent)(Code)
Respond to an elapsed frames event (assuming subclass has set up a wakeup criterion for it).
Parameters:
  time - A WakeupOnElapsedFrames criterion to respond to.



processStimulus
public void processStimulus(Enumeration criteria)(Code)
Process a new wakeup. Interpret mouse button presses, releases, and mouse drags.
Parameters:
  criteria - The wakeup criteria causing the behavior wakeup.



setActiveCursor
public void setActiveCursor(Cursor cursor)(Code)
Set the active cursor to work with when an event occurs.
Parameters:
  cursor - The cursor active when the user picks something.



setBranchGroup
public void setBranchGroup(BranchGroup branchGroup)(Code)
Set the transform group modified by the viewer behavior. Setting the transform group to null disables the behavior until the transform group is again set to an existing group.
Parameters:
  transformGroup - The new transform group to be modifiedby the behavior.



setHighlightLevel
public void setHighlightLevel(float level)(Code)



setParentComponent
public void setParentComponent(Canvas3D parent)(Code)
Sets the parent component who's cursor will be changed during mouse drags. If no component is given is given to the constructor, or set via this method, no cursor changes will be done.
Parameters:
  parent - the AWT Component, such as a Frame, within whichcursor changes should take place duringmouse drags



setPickMode
public void setPickMode(int pickMode)(Code)
Sets the pickMode component of this PickRotateBehavior to the value of the passed pickMode.
Parameters:
  pickMode - the pickMode to be copied.



setXRotationFactor
public void setXRotationFactor(double factor)(Code)
Set the X rotation scaling factor for X-axis rotations.
Parameters:
  factor - The new scaling factor.



setXTranslationFactor
public void setXTranslationFactor(double factor)(Code)
Set the X translation scaling factor for X-axis translations.
Parameters:
  factor - The new scaling factor.



setYRotationFactor
public void setYRotationFactor(double factor)(Code)
Set the Y rotation scaling factor for Y-axis rotations.
Parameters:
  factor - The new scaling factor.



setYTranslationFactor
public void setYTranslationFactor(double factor)(Code)
Set the Y translation scaling factor for Y-axis translations.
Parameters:
  factor - The new scaling factor.



setZTranslationFactor
public void setZTranslationFactor(double factor)(Code)
Set the Z translation scaling factor for Z-axis translations.
Parameters:
  factor - The new scaling factor.



Methods inherited from javax.media.j3d.Behavior
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
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)
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)

Methods inherited from javax.media.j3d.SceneGraphObject
final public void clearCapability(int bit)(Code)(Java Doc)
final public void clearCapabilityIsFrequent(int bit)(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)
public Object getUserData()(Code)(Java Doc)
final public boolean isCompiled()(Code)(Java Doc)
final public boolean isLive()(Code)(Java Doc)
final public void setCapability(int bit)(Code)(Java Doc)
final public void setCapabilityIsFrequent(int bit)(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.