hi all, I've already ask some help about this subject, but i need more help
i'm want to move a cut plane on a shape and getting the cross-section in a other canvas (2D or 3D) I use the front clip and the back clip of the camera as cut plane, and the camera is locate juste in front of the cut plane I move the plane with a orbit Behavior. my problems is that the cross section of the shape surface's is not complete, some lines are missing or appear like broken line. anyone could help me? Thanking you in advance for your help. Renaud nb: my code Transform3D location = new Transform3D(); location.set(new Vector3f(.0f,.0f,0.000f)); cameraD_.setlocation(location); cameraD_. ... .setViewPlatformBehavior(orbitBehavior); cameraD_. .. .setProjectionPolicy(View.PARALLEL_PROJECTION); cameraD_. ... .setBackClipDistance(0.0008); cameraD_. ... .setFrontClipDistance(0.00); //the cut plane Box BoxObj = new Box(3f, 3f, 0.01f, ap2); PlatformGeometry pg = new PlatformGeometry(); Transform3D translation = new Transform3D(); translation.setTranslation(new Vector3f(0.0f,0.0f,-0.001f)); TransformGroup translate = new TransformGroup(); translate.setTransform(translation); translate.addChild(BoxObj); pg.addChild(translate); cameraD_. ... .setPlatformGeometry(pg); ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".