diff options
author | Harvey Harrison <[email protected]> | 2013-08-06 12:48:54 -0700 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2013-08-06 12:48:54 -0700 |
commit | 0bfd29012c5cec92eb7f0b277bff52e0a6b6db2c (patch) | |
tree | f9558725485d87ad7f29561a342a7b6c399af564 /src | |
parent | 34dcd85752b7d90eace5528e74ab3a37e554df95 (diff) |
j3dutils: fix javadoc parameter ordering for GeometryInfo::getIndexedGeometryArray
- fixes bug 642 in the java3d bugtracker
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/classes/share/com/sun/j3d/utils/geometry/GeometryInfo.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/classes/share/com/sun/j3d/utils/geometry/GeometryInfo.java b/src/classes/share/com/sun/j3d/utils/geometry/GeometryInfo.java index 546aa8d..d012176 100644 --- a/src/classes/share/com/sun/j3d/utils/geometry/GeometryInfo.java +++ b/src/classes/share/com/sun/j3d/utils/geometry/GeometryInfo.java @@ -2638,13 +2638,13 @@ public class GeometryInfo { * BY_REFERENCE. * @param interleaved Use INTERLEAVED geometry. Implies byRef is * true as well. - * @param nio Create GeometryArray using java.nio.Buffer for - * geometry arrays. Only usable on JDK 1.4 or higher. Implies - * byRef is true as well. * @param useCoordIndexOnly Create the IndexedGeometryArray using * USE_COORD_INDEX_ONLY. Values from the coordinate index array * are used as a single set of indices into all vertex * component arrays (coord, color, normal, and texCoord). + * @param nio Create GeometryArray using java.nio.Buffer for + * geometry arrays. Only usable on JDK 1.4 or higher. Implies + * byRef is true as well. * @throws IllegalArgumentException if coordinate data is missing, * if the index lists aren't all the * same length, if an index list is set and the corresponding data |