EOS 2  1.1.0
Einfache Objektbasierte Sprache
VerticeTexture.java
gehe zur Dokumentation dieser Datei
1 package de.lathanda.eos.robot.geom3d;
10 public class VerticeTexture {
11  public final float u;
12  public final float v;
13  public VerticeTexture(float u, float v) {
14  this.u = u;
15  this.v = v;
16  }
17  public VerticeTexture(float[] uv) {
18  this.u = uv[0];
19  this.v = uv[1];
20  }
21 }
Impressum