In my J3D program I use a TCBSplinePathInterpolator. This TCBSplinePathInterpolator's interpolation must occur many times in my program, but only infrequently (in response to user activity). I initialize this interpolator using an alpha with a loopCount of 1, allowing the interpolation to occur once. My plan was to specify a new Alpha for the same TCBSplinePathInterpolator object (again with loopCount = 1) later, to cause a 2nd interpolation. The first interpolation happens exactly as I want, no problem. Later, when I want to restart the interpolation, I call interpolator.setAlpha(new Alpha(1,0,0,6000,1000,0)); (identical parameters as in the first usage of the interpolator) . Although the interpolator is enabled, a 2nd interpolation does not occur. My question: is it possible to specify a new Alpha object for an interpolator, and cause that same Interpolator object to restart itself with? Thanks in advance Stuart Fischer Later in my program, I would like to =========================================================================== 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".
