Spritesheet generator for the tortuga game
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
433 B

package com.mykaruga.models.wavefront.loader;
public class TextureCoordinate {
private float u;
private float v;
private float w;
public float getU() {
return u;
}
public void setU(float u) {
this.u = u;
}
public float getV() {
return v;
}
public void setV(float v) {
this.v = v;
}
public float getW() {
return w;
}
public void setW(float w) {
this.w = w;
}
}