14 lines
269 B
Java
14 lines
269 B
Java
package model;
|
|
|
|
public class FacePTN {
|
|
public int position;
|
|
public int texture;
|
|
public int normal;
|
|
|
|
FacePTN(int position, int texture, int normal) {
|
|
this.position = position;
|
|
this.texture = texture;
|
|
this.normal = normal;
|
|
}
|
|
}
|