/* 1044 */ this.stream.add(new NormalQuant(value));
/* */ }
/* */
/* */ private void getIndexArrays(GeometryArray ga, IndexArrays ia)
/* */ {
/* 1165 */ IndexedGeometryArray iga = (IndexedGeometryArray)ga;
/* */
/* 1167 */ int initialIndexIndex = iga.getInitialIndexIndex();
/* 1168 */ int indexCount = iga.getValidIndexCount();
/* 1169 */ int vertexFormat = iga.getVertexFormat();
/* */
/* 1171 */ boolean useCoordIndexOnly = false;
/* 1172 */ if ((vertexFormat & 0x200) != 0)
/* */ {
/* 1174 */ useCoordIndexOnly = true;
/* */ }
/* */
/* 1177 */ ia.positionIndices = new int[indexCount];
/* 1178 */ iga.getCoordinateIndices(initialIndexIndex, ia.positionIndices);
/* */
/* 1180 */ if (this.vertexNormals) {
/* 1181 */ if (useCoordIndexOnly) {
/* 1182 */ ia.normalIndices = ia.positionIndices;
/* */ }
/* */ else {
/* 1185 */ ia.normalIndices = new int[indexCount];
/* 1186 */ iga.getNormalIndices(initialIndexIndex, ia.normalIndices);
/* */ }
/* */ }
/* 1189 */ if ((this.vertexColor3) || (this.vertexColor4))
/* 1190 */ if (useCoordIndexOnly) {
/* 1191 */ ia.colorIndices = ia.positionIndices;
/* */ }
/* */ else {
/* 1194 */ ia.colorIndices = new int[indexCount];
/* 1195 */ iga.getColorIndices(initialIndexIndex, ia.colorIndices);
/* */ }
/* */ }