(Sorry for my English)
This is about instance of GeometryInfo class created like this:
new GeometryInfo ( GeometryInfo.POLYGON_ARRAY )
Can I set coordinate indices with setCoordinateIndices ( coordinateIndices )
using array with not sorted indices in the begining of the array? For
example I have a cube (every face have 4 vertices ) and I want to set
indices like below:
coordinateIndices: { 0, 2, 3, 1, 4, 5, 7, 6, 0, 1, 5, 4, 1, 3, 7, 5, 3, 2,
6, 7, 2, 0, 4, 6, }
should I use insted of it that array:?
coordinateIndices2: { 0, 1, 2, 3, 4, 5, 6, 7, 0, 3, 5, 4, 3, 2, 6, 5, 2, 1,
7, 6, 1, 0, 4, 7 }
If yes, why? Isn't the same?
By the way, indexed array ar faster to display?
Thanks
Daniel Wojciechowski
===========================================================================
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".