Fix broken ant build
parent
06f80024cb
commit
6829af0dd6
|
@ -67,7 +67,7 @@ public final class JaiDebug {
|
|||
return;
|
||||
}
|
||||
|
||||
for (int i = 0; i < mesh.getNumVertives(); i++) {
|
||||
for (int i = 0; i < mesh.getNumVertices(); i++) {
|
||||
System.out.println("[" +
|
||||
mesh.getPositionX(i) + ", " +
|
||||
mesh.getPositionY(i) + ", " +
|
||||
|
@ -119,7 +119,7 @@ public final class JaiDebug {
|
|||
return;
|
||||
}
|
||||
|
||||
for (int i = 0; i < mesh.getNumVertives(); i++) {
|
||||
for (int i = 0; i < mesh.getNumVertices(); i++) {
|
||||
System.out.println("[" +
|
||||
mesh.getColorR(i, colorset) + ", " +
|
||||
mesh.getColorG(i, colorset) + ", " +
|
||||
|
@ -142,7 +142,7 @@ public final class JaiDebug {
|
|||
return;
|
||||
}
|
||||
|
||||
for (int i = 0; i < mesh.getNumVertives(); i++) {
|
||||
for (int i = 0; i < mesh.getNumVertices(); i++) {
|
||||
int numComponents = mesh.getNumUVComponents(coords);
|
||||
System.out.print("[" + mesh.getTexCoordU(i, coords));
|
||||
|
||||
|
|
Loading…
Reference in New Issue