meshes and colors

This commit is contained in:
2020-05-29 15:32:24 -04:00
parent 8d8a90f29a
commit 3192682853
19 changed files with 492 additions and 54 deletions
@@ -0,0 +1,33 @@
package org.hl.engine.objects.yloaders;
import java.util.ArrayList;
public class YPoint implements java.io.Serializable {
private ArrayList<Float> vertex;
private ArrayList<Float> texture;
private ArrayList<Float> color;
public ArrayList<Float> getVertex() {
return vertex;
}
public void setVertex(ArrayList<Float> vertex) {
this.vertex = vertex;
}
public ArrayList<Float> getTexture() {
return texture;
}
public void setTexture(ArrayList<Float> texture) {
this.texture = texture;
}
public ArrayList<Float> getColor() {
return color;
}
public void setColor(ArrayList<Float> color) {
this.color = color;
}
}