Package edu.uci.ics.jung.visualization3d.control

Examples of edu.uci.ics.jung.visualization3d.control.MouseRotate


    yellowLook.setMaterial(yellowMaterial);
    Bounds bounds =
      new BoundingSphere(new Point3d(),
          300);

    MouseRotate behavior1 = new MouseRotate();
    behavior1.setTransformGroup(objTrans);
    objTrans.addChild(behavior1);
    behavior1.setSchedulingBounds(bounds);

    MouseWheelZoom behavior2 = new MouseWheelZoom();
    behavior2.setTransformGroup(objTrans);
//    behavior2.setFactor(10);
    objTrans.addChild(behavior2);
View Full Code Here

TOP

Related Classes of edu.uci.ics.jung.visualization3d.control.MouseRotate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.