Java Doc for OrbitBehavior.java in  » 6.0-JDK-Modules » java-3d » com » sun » j3d » utils » behaviors » vp » 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.sun.j3d.utils.behaviors.vp 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.sun.j3d.utils.behaviors.vp.ViewPlatformBehavior
   com.sun.j3d.utils.behaviors.vp.ViewPlatformAWTBehavior
      com.sun.j3d.utils.behaviors.vp.OrbitBehavior

OrbitBehavior
public class OrbitBehavior extends ViewPlatformAWTBehavior (Code)
Moves the View around a point of interest when the mouse is dragged with a mouse button pressed. Includes rotation, zoom, and translation actions. Zooming can also be obtained by using mouse wheel.

This behavior must be added to the ViewingPlatform using the ViewingPlatform.setViewPlatformBehavior method.

The rotate action rotates the ViewPlatform around the point of interest when the mouse is moved with the main mouse button pressed. The rotation is in the direction of the mouse movement, with a default rotation of 0.01 radians for each pixel of mouse movement.

The zoom action moves the ViewPlatform closer to or further from the point of interest when the mouse is moved with the middle mouse button pressed (or Alt-main mouse button on systems without a middle mouse button). The default zoom action is to translate the ViewPlatform 0.01 units for each pixel of mouse movement. Moving the mouse up moves the ViewPlatform closer, moving the mouse down moves the ViewPlatform further away.

By default, the zoom action allows the ViewPlatform to move through the center of rotation to orbit at a negative radius. The STOP_ZOOM constructor flag will stop the ViewPlatform at a minimum radius from the center. The default minimum radius is 0.0 and can be set using the setMinRadius method.

The PROPORTIONAL_ZOOM constructor flag changes the zoom action to move the ViewPlatform proportional to its distance from the center of rotation. For this mode, the default action is to move the ViewPlatform by 1% of its distance from the center of rotation for each pixel of mouse movement.

The translate action translates the ViewPlatform when the mouse is moved with the right mouse button pressed (Shift-main mouse button on systems without a right mouse button). The translation is in the direction of the mouse movement, with a default translation of 0.01 units for each pixel of mouse movement.

The sensitivity of the actions can be scaled using the setActionFactor() methods which scale the default movement by the factor. The rotate and translate actions have separate factors for x and y.

The actions can be reversed using the REVERSE_ACTION constructor flags. The default action moves the ViewPlatform around the objects in the scene. The REVERSE_ACTION flags can make the objects in the scene appear to be moving in the direction of the mouse movement.

The actions can be disabled by either using the DISABLE_ACTION constructor flags or the setActionEnable methods.

The default center of rotation is (0, 0, 0) and can be set using the setRotationCenter() method.
since:
   Java 3D 1.2.1



Field Summary
final public static  intDISABLE_ROTATE
    
final public static  intDISABLE_TRANSLATE
    
final public static  intDISABLE_ZOOM
    
final public static  intPROPORTIONAL_ZOOM
     Constructor flag to use proportional zoom, which determines how much you zoom based on view's distance from the center of rotation.
final public static  intREVERSE_ALL
    
final public static  intREVERSE_ROTATE
    
final public static  intREVERSE_TRANSLATE
    
final public static  intREVERSE_ZOOM
    
final public static  intSTOP_ZOOM
     Constructor flag that indicates zoom should stop when it reaches the minimum orbit radius set by setMinRadius().

Constructor Summary
public  OrbitBehavior()
     Parameterless constructor for this behavior.
public  OrbitBehavior(Canvas3D c)
    
public  OrbitBehavior(Canvas3D c, int flags)
    

Method Summary
public  voidMinRadius(Object[] r)
     Property which sets the minimum radius for the OrbitBehavior.
public  voidProportionalZoom(Object[] state)
     Property which sets proportional zoom behavior.
public  voidReverseRotate(Object[] state)
     Property which sets reverse rotate behavior.
public  voidReverseTranslate(Object[] state)
     Property which sets reverse translate behavior.
public  voidReverseZoom(Object[] state)
     Property which sets reverse zoom behavior.
public  voidRotFactors(Object[] factors)
     Property which sets the rotation x and y factors.
public  voidRotXFactor(Object[] xFactor)
     Property which sets the rotation x factor.
public  voidRotYFactor(Object[] yFactor)
     Property which sets the rotation y factor.
public  voidRotateEnable(Object[] enabled)
     Property which enables or disables rotation.
public  voidRotationCenter(Object[] center)
     Property which sets the center around which the View rotates.
public  voidTransFactors(Object[] factors)
     Property which sets the translation x and y factors.
public  voidTransXFactor(Object[] xFactor)
     Property which sets the translation x factor.
public  voidTransYFactor(Object[] yFactor)
     Property which sets the translation y factor.
public  voidTranslateEnable(Object[] enabled)
     Property which enables or disables translate.
public  voidZoomEnable(Object[] enabled)
     Property which enables or disables zoom.
public  voidZoomFactor(Object[] zFactor)
     Property which sets the zoom factor.
public  doublegetMinRadius()
     Returns the minimum orbit radius.
public  doublegetRotXFactor()
    
public  doublegetRotYFactor()
    
public  booleangetRotateEnable()
    
public  voidgetRotationCenter(Point3d center)
     Places the value of the center around which the View rotates into the Point3d.
public  doublegetTransXFactor()
    
public  doublegetTransYFactor()
    
public  booleangetTranslateEnable()
    
public  booleangetZoomEnable()
    
public  doublegetZoomFactor()
    
protected synchronized  voidintegrateTransforms()
    
protected synchronized  voidprocessAWTEvents(AWTEvent[] events)
    
protected  voidprocessMouseEvent(MouseEvent evt)
    
 booleanrotate(MouseEvent evt)
    
public synchronized  voidsetMinRadius(double r)
     Sets the minimum radius for the OrbitBehavior.
public synchronized  voidsetProportionalZoom(boolean state)
     Set proportional zoom behavior.
public  voidsetReverseRotate(boolean state)
     Set reverse rotate behavior.
public  voidsetReverseTranslate(boolean state)
     Set reverse translate behavior.
public  voidsetReverseZoom(boolean state)
     Set reverse zoom behavior.
public synchronized  voidsetRotFactors(double xfactor, double yfactor)
     Sets the rotation x and y factors.
public synchronized  voidsetRotXFactor(double xfactor)
     Sets the rotation x factor.
public synchronized  voidsetRotYFactor(double yfactor)
     Sets the rotation y factor.
public synchronized  voidsetRotateEnable(boolean enabled)
     Enables or disables rotation.
public synchronized  voidsetRotationCenter(Point3d center)
     Sets the center around which the View rotates.
public synchronized  voidsetTransFactors(double xfactor, double yfactor)
     Sets the translation x and y factors.
public synchronized  voidsetTransXFactor(double xfactor)
     Sets the translation x factor.
public synchronized  voidsetTransYFactor(double yfactor)
     Sets the translation y factor.
public synchronized  voidsetTranslateEnable(boolean enabled)
     Enables or disables translate.
public  voidsetViewingPlatform(ViewingPlatform vp)
     Sets the ViewingPlatform for this behavior.
public synchronized  voidsetZoomEnable(boolean enabled)
     Enables or disables zoom.
public synchronized  voidsetZoomFactor(double zfactor)
     Sets the zoom factor.
 booleantranslate(MouseEvent evt)
    
 booleanzoom(MouseEvent evt)
    

Field Detail
DISABLE_ROTATE
final public static int DISABLE_ROTATE(Code)
Constructor flag to disable rotate



DISABLE_TRANSLATE
final public static int DISABLE_TRANSLATE(Code)
Constructor flag to disable translate



DISABLE_ZOOM
final public static int DISABLE_ZOOM(Code)
Constructor flag to disable zoom



PROPORTIONAL_ZOOM
final public static int PROPORTIONAL_ZOOM(Code)
Constructor flag to use proportional zoom, which determines how much you zoom based on view's distance from the center of rotation. The percentage of distance that the viewer zooms is determined by the zoom factor.



REVERSE_ALL
final public static int REVERSE_ALL(Code)
Constructor flag to reverse all the behaviors



REVERSE_ROTATE
final public static int REVERSE_ROTATE(Code)
Constructor flag to reverse the rotate behavior



REVERSE_TRANSLATE
final public static int REVERSE_TRANSLATE(Code)
Constructor flag to reverse the translate behavior



REVERSE_ZOOM
final public static int REVERSE_ZOOM(Code)
Constructor flag to reverse the zoom behavior



STOP_ZOOM
final public static int STOP_ZOOM(Code)
Constructor flag that indicates zoom should stop when it reaches the minimum orbit radius set by setMinRadius(). The minimus radius default is 0.0.




Constructor Detail
OrbitBehavior
public OrbitBehavior()(Code)
Parameterless constructor for this behavior. This is intended for use by ConfiguredUniverse, which requires such a constructor for configurable behaviors. The Canvas3D used to listen for mouse and mouse motion events is obtained from the superclass setViewingPlatform() method.
since:
   Java 3D 1.3



OrbitBehavior
public OrbitBehavior(Canvas3D c)(Code)
Creates a new OrbitBehavior
Parameters:
  c - The Canvas3D to add the behavior to



OrbitBehavior
public OrbitBehavior(Canvas3D c, int flags)(Code)
Creates a new OrbitBehavior
Parameters:
  c - The Canvas3D to add the behavior to
Parameters:
  flags - The option flags




Method Detail
MinRadius
public void MinRadius(Object[] r)(Code)
Property which sets the minimum radius for the OrbitBehavior. Used by ConfiguredUniverse.
Parameters:
  r - array of length 1 containing instance of Double
since:
   Java 3D 1.3



ProportionalZoom
public void ProportionalZoom(Object[] state)(Code)
Property which sets proportional zoom behavior. Used by ConfiguredUniverse.
Parameters:
  state - array of length 1 containing instance of Boolean
since:
   Java 3D 1.3



ReverseRotate
public void ReverseRotate(Object[] state)(Code)
Property which sets reverse rotate behavior. Used by ConfiguredUniverse.
Parameters:
  state - array of length 1 containing instance of Boolean
since:
   Java 3D 1.3



ReverseTranslate
public void ReverseTranslate(Object[] state)(Code)
Property which sets reverse translate behavior. Used by ConfiguredUniverse.
Parameters:
  state - array of length 1 containing instance of Boolean
since:
   Java 3D 1.3



ReverseZoom
public void ReverseZoom(Object[] state)(Code)
Property which sets reverse zoom behavior. Used by ConfiguredUniverse.
Parameters:
  state - array of length 1 containing instance of Boolean
since:
   Java 3D 1.3



RotFactors
public void RotFactors(Object[] factors)(Code)
Property which sets the rotation x and y factors. Used by ConfiguredUniverse.
Parameters:
  factors - array of length 2 containing instances of Double
since:
   Java 3D 1.3



RotXFactor
public void RotXFactor(Object[] xFactor)(Code)
Property which sets the rotation x factor. Used by ConfiguredUniverse.
Parameters:
  xFactor - array of length 1 containing instance of Double
since:
   Java 3D 1.3



RotYFactor
public void RotYFactor(Object[] yFactor)(Code)
Property which sets the rotation y factor. Used by ConfiguredUniverse.
Parameters:
  yFactor - array of length 1 containing instance of Double
since:
   Java 3D 1.3



RotateEnable
public void RotateEnable(Object[] enabled)(Code)
Property which enables or disables rotation. Used by ConfiguredUniverse.
Parameters:
  enabled - array of length 1 containing instance of Boolean
since:
   Java 3D 1.3



RotationCenter
public void RotationCenter(Object[] center)(Code)
Property which sets the center around which the View rotates. Used by ConfiguredUniverse.
Parameters:
  center - array of length 1 containing an instance of Point3d
since:
   Java 3D 1.3



TransFactors
public void TransFactors(Object[] factors)(Code)
Property which sets the translation x and y factors. Used by ConfiguredUniverse.
Parameters:
  factors - array of length 2 containing instances of Double
since:
   Java 3D 1.3



TransXFactor
public void TransXFactor(Object[] xFactor)(Code)
Property which sets the translation x factor. Used by ConfiguredUniverse.
Parameters:
  xFactor - array of length 1 containing instance of Double
since:
   Java 3D 1.3



TransYFactor
public void TransYFactor(Object[] yFactor)(Code)
Property which sets the translation y factor. Used by ConfiguredUniverse.
Parameters:
  yFactor - array of length 1 containing instance of Double
since:
   Java 3D 1.3



TranslateEnable
public void TranslateEnable(Object[] enabled)(Code)
Property which enables or disables translate. Used by ConfiguredUniverse.
Parameters:
  enabled - array of length 1 containing instance of Boolean
since:
   Java 3D 1.3



ZoomEnable
public void ZoomEnable(Object[] enabled)(Code)
Property which enables or disables zoom. Used by ConfiguredUniverse.
Parameters:
  enabled - array of length 1 containing instance of Boolean
since:
   Java 3D 1.3



ZoomFactor
public void ZoomFactor(Object[] zFactor)(Code)
Property which sets the zoom factor. Used by ConfiguredUniverse.
Parameters:
  zFactor - array of length 1 containing instance of Double
since:
   Java 3D 1.3



getMinRadius
public double getMinRadius()(Code)
Returns the minimum orbit radius. The zoom will stop at this distance from the center of rotation if the STOP_ZOOM constructor flag is set. the minimum radius



getRotXFactor
public double getRotXFactor()(Code)
Returns the x rotation movement multiplier The movement multiplier for x rotation



getRotYFactor
public double getRotYFactor()(Code)
Returns the y rotation movement multiplier The movement multiplier for y rotation



getRotateEnable
public boolean getRotateEnable()(Code)
Retrieves the state of rotate enabled the rotate enable state



getRotationCenter
public void getRotationCenter(Point3d center)(Code)
Places the value of the center around which the View rotates into the Point3d.
Parameters:
  center - The Point3d



getTransXFactor
public double getTransXFactor()(Code)
Returns the x translation movement multiplier The movement multiplier for x translation



getTransYFactor
public double getTransYFactor()(Code)
Returns the y translation movement multiplier The movement multiplier for y translation



getTranslateEnable
public boolean getTranslateEnable()(Code)
Retrieves the state of translate enabled the translate enable state



getZoomEnable
public boolean getZoomEnable()(Code)
Retrieves the state of zoom enabled the zoom enable state



getZoomFactor
public double getZoomFactor()(Code)
Returns the zoom movement multiplier The movement multiplier for zoom



integrateTransforms
protected synchronized void integrateTransforms()(Code)



processAWTEvents
protected synchronized void processAWTEvents(AWTEvent[] events)(Code)



processMouseEvent
protected void processMouseEvent(MouseEvent evt)(Code)



rotate
boolean rotate(MouseEvent evt)(Code)



setMinRadius
public synchronized void setMinRadius(double r)(Code)
Sets the minimum radius for the OrbitBehavior. The zoom will stop at this distance from the center of rotation. The default is 0.0. The minimum will have no affect if the STOP_ZOOM constructor flag is not set.
Parameters:
  r - the minimum radius
exception:
  IllegalArgumentException - if the radius is less than 0.0



setProportionalZoom
public synchronized void setProportionalZoom(boolean state)(Code)
Set proportional zoom behavior. The default is false.
Parameters:
  state - if true, use proportional zoom behavior
since:
   Java 3D 1.3



setReverseRotate
public void setReverseRotate(boolean state)(Code)
Set reverse rotate behavior. The default is false.
Parameters:
  state - if true, reverse rotate behavior
since:
   Java 3D 1.3



setReverseTranslate
public void setReverseTranslate(boolean state)(Code)
Set reverse translate behavior. The default is false.
Parameters:
  state - if true, reverse translate behavior
since:
   Java 3D 1.3



setReverseZoom
public void setReverseZoom(boolean state)(Code)
Set reverse zoom behavior. The default is false.
Parameters:
  state - if true, reverse zoom behavior
since:
   Java 3D 1.3



setRotFactors
public synchronized void setRotFactors(double xfactor, double yfactor)(Code)
Sets the rotation x and y factors. The factors are used to determine how many radians to rotate the view for each pixel of mouse movement. The view is rotated factor * 0.01 radians for each pixel of mouse movement. The default factor is 1.0.
Parameters:
  xfactor - The x movement multiplier
Parameters:
  yfactor - The y movement multiplier



setRotXFactor
public synchronized void setRotXFactor(double xfactor)(Code)
Sets the rotation x factor. The factors are used to determine how many radians to rotate the view for each pixel of mouse movement. The view is rotated factor * 0.01 radians for each pixel of mouse movement. The default factor is 1.0.
Parameters:
  xfactor - The x movement multiplier



setRotYFactor
public synchronized void setRotYFactor(double yfactor)(Code)
Sets the rotation y factor. The factors are used to determine how many radians to rotate the view for each pixel of mouse movement. The view is rotated factor * 0.01 radians for each pixel of mouse movement. The default factor is 1.0.
Parameters:
  yfactor - The y movement multiplier



setRotateEnable
public synchronized void setRotateEnable(boolean enabled)(Code)
Enables or disables rotation. The default is true.
Parameters:
  enabled - true or false to enable or disable rotate



setRotationCenter
public synchronized void setRotationCenter(Point3d center)(Code)
Sets the center around which the View rotates. The default is (0,0,0).
Parameters:
  center - The Point3d to set the center of rotation to



setTransFactors
public synchronized void setTransFactors(double xfactor, double yfactor)(Code)
Sets the translation x and y factors. The factors are used to determine how many units to translate the view for each pixel of mouse movement. The view is translated factor * 0.01 units for each pixel of mouse movement. The default factor is 1.0.
Parameters:
  xfactor - The x movement multiplier
Parameters:
  yfactor - The y movement multiplier



setTransXFactor
public synchronized void setTransXFactor(double xfactor)(Code)
Sets the translation x factor. The factors are used to determine how many units to translate the view for each pixel of mouse movement. The view is translated factor * 0.01 units for each pixel of mouse movement. The default factor is 1.0.
Parameters:
  xfactor - The x movement multiplier



setTransYFactor
public synchronized void setTransYFactor(double yfactor)(Code)
Sets the translation y factor. The factors are used to determine how many units to translate the view for each pixel of mouse movement. The view is translated factor * 0.01 units for each pixel of mouse movement. The default factor is 1.0.
Parameters:
  yfactor - The y movement multiplier



setTranslateEnable
public synchronized void setTranslateEnable(boolean enabled)(Code)
Enables or disables translate. The default is true.
Parameters:
  enabled - true or false to enable or disable translate



setViewingPlatform
public void setViewingPlatform(ViewingPlatform vp)(Code)
Sets the ViewingPlatform for this behavior. This method is called by the ViewingPlatform. If a sub-calls overrides this method, it must call super.setViewingPlatform(vp). NOTE: Applications should not call this method.



setZoomEnable
public synchronized void setZoomEnable(boolean enabled)(Code)
Enables or disables zoom. The default is true.
Parameters:
  enabled - true or false to enable or disable zoom



setZoomFactor
public synchronized void setZoomFactor(double zfactor)(Code)
Sets the zoom factor. The factor is used to determine how many units to zoom the view for each pixel of mouse movement. The view is zoomed factor * 0.01 units for each pixel of mouse movement. For proportional zoom, the view is zoomed factor * 1% of the distance from the center of rotation for each pixel of mouse movement. The default factor is 1.0.
Parameters:
  zfactor - The movement multiplier



translate
boolean translate(MouseEvent evt)(Code)



zoom
boolean zoom(MouseEvent evt)(Code)



Fields inherited from com.sun.j3d.utils.behaviors.vp.ViewPlatformAWTBehavior
final public static int KEY_LISTENER(Code)(Java Doc)
final public static int MOUSE_LISTENER(Code)(Java Doc)
final public static int MOUSE_MOTION_LISTENER(Code)(Java Doc)
final public static int MOUSE_WHEEL_LISTENER(Code)(Java Doc)
final protected static int POST_ID(Code)(Java Doc)
protected Canvas3D canvases(Code)(Java Doc)
protected WakeupOnElapsedFrames frameWakeup(Code)(Java Doc)
protected boolean motion(Code)(Java Doc)
protected WakeupOnBehaviorPost postWakeup(Code)(Java Doc)
protected Transform3D targetTransform(Code)(Java Doc)

Methods inherited from com.sun.j3d.utils.behaviors.vp.ViewPlatformAWTBehavior
public void initialize()(Code)(Java Doc)
abstract protected void integrateTransforms()(Code)(Java Doc)
public void keyPressed(java.awt.event.KeyEvent e)(Code)(Java Doc)
public void keyReleased(java.awt.event.KeyEvent e)(Code)(Java Doc)
public void keyTyped(java.awt.event.KeyEvent e)(Code)(Java Doc)
public void mouseClicked(MouseEvent e)(Code)(Java Doc)
public void mouseDragged(MouseEvent e)(Code)(Java Doc)
public void mouseEntered(MouseEvent e)(Code)(Java Doc)
public void mouseExited(MouseEvent e)(Code)(Java Doc)
public void mouseMoved(MouseEvent e)(Code)(Java Doc)
public void mousePressed(MouseEvent e)(Code)(Java Doc)
public void mouseReleased(MouseEvent e)(Code)(Java Doc)
public void mouseWheelMoved(java.awt.event.MouseWheelEvent e)(Code)(Java Doc)
abstract protected void processAWTEvents(java.awt.AWTEvent[] events)(Code)(Java Doc)
public void processStimulus(java.util.Enumeration behEnum)(Code)(Java Doc)
protected void queueAWTEvent(AWTEvent e)(Code)(Java Doc)
public void setEnable(boolean state)(Code)(Java Doc)
protected void setListenerFlags(int listenerFlags)(Code)(Java Doc)
public void setViewingPlatform(ViewingPlatform vp)(Code)(Java Doc)

Fields inherited from com.sun.j3d.utils.behaviors.vp.ViewPlatformBehavior
protected Transform3D homeTransform(Code)(Java Doc)
protected TransformGroup targetTG(Code)(Java Doc)
protected ViewingPlatform vp(Code)(Java Doc)

Methods inherited from com.sun.j3d.utils.behaviors.vp.ViewPlatformBehavior
public void getHomeTransform(Transform3D home)(Code)(Java Doc)
public ViewingPlatform getViewingPlatform()(Code)(Java Doc)
public void goHome()(Code)(Java Doc)
public void setHomeTransform(Transform3D home)(Code)(Java Doc)
public void setViewingPlatform(ViewingPlatform vp)(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.