Can anybody explain why the addition of the following code:
TransformGroup spinTrans = new TransformGroup();
spinTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
spinTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
Transform3D rAxis = new Transform3D();
Alpha rotationAlpha = new Alpha(-1, Alpha.INCREASING_ENABLE,
0,0,1000,0,0,0,0,0);
RotationInterpolator rotator = new RotationInterpolator(rotationAlpha,
spinTrans, rAxis,0.0f, (float) Math.PI*2.0f);
rotator.setSchedulingBounds(bounds);
scene.addChild(spinTrans);
spinTrans.addChild(rotator);
Color3f lColor1 = new Color3f(0.9f, 0.9f, 0.9f);
Vector3f lDir1 = new Vector3f(1.0f, 0.0f, 0.0f);
DirectionalLight lgt1 = new DirectionalLight(lColor1, lDir1);
lgt1.setInfluencingBounds(bounds);
spinTrans.addChild(lgt1);
results in the following error:
JAVA caused an invalid page fault in
module J3D.DLL at 0157:1000db6c.
Registers:
EAX=00000000 CS=0157 EIP=1000db6c EFLGS=00010202
EBX=00000001 SS=015f ESP=0456fc0c EBP=00000000
ECX=038804e0 DS=015f ESI=038804e0 FS=3b27
EDX=1001cbc4 ES=015f EDI=038804e0 GS=0000
Bytes at CS:EIP:
ff 10 8d 4c 24 0c c7 44 24 18 ff ff ff ff e8 d1
Stack dump:
00000001 00000001 03880550 10027148 1000d721 0456fe28 1001a748 00000000
1001380f 00000000 00000001 10000000 100137ab 00000000 00000000 00000001
This error only occurs when the application closes.
paul burger
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com
=====================================================================
To subscribe/unsubscribe, send mail to [EMAIL PROTECTED]
Java 3D Home Page: http://java.sun.com/products/java-media/3D/