Hello,
I need help on creating dynamic array of TransformGroups in Java3D. The
following code:
TransformGroup tgTemp[] = new TransformGroup[50];
Has no problem when compiling. But whenever I try to do something with one
of the objects in the array:
eg. tgTemp[1].setTransform(some_Transform3D_object);
the program generates NullPointerExceptions. It acts like the array doesn't
exist... Has anyone out there successfully created an array of
TransformGroups in their programs? If so can you help me out? I appreciate
any feedback. Thanks.
Ernie