Package javax.media.j3d

Examples of javax.media.j3d.ModelClip


      MouseZoom behavior2 = new MouseZoom(objTrans);
      objTrans.addChild(behavior2);
      behavior2.setSchedulingBounds(bounds);
     
      //Create Model Clip
      ModelClip mc = new ModelClip();
      boolean enables[] = {false, false, false, false, false, false};
      Vector4d eqn = plane;
      mc.setEnables(enables);
      mc.setPlane(1, eqn);
      mc.setEnable(1, true);
      mc.setInfluencingBounds(bounds);
      objTrans.addChild(mc);

  }
View Full Code Here

TOP

Related Classes of javax.media.j3d.ModelClip

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.