> Is this equivalent to the first loop ?
> const int tempCount = count - 1;
> for( int i = 0; i < tempCount; i ++)

make this:
for( int i = 0; i <= tempCount; i++)

>
>
> regards
> Paul

===========================================================================
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".

Reply via email to