EOS 2  1.1.0
Einfache Objektbasierte Sprache
VerticeNormal.java
gehe zur Dokumentation dieser Datei
1 package de.lathanda.eos.robot.geom3d;
8 public class VerticeNormal {
9  public final float dx;
10  public final float dy;
11  public final float dz;
12  public VerticeNormal(float dx, float dy, float dz) {
13  super();
14  this.dx = dx;
15  this.dy = dy;
16  this.dz = dz;
17  }
18  public VerticeNormal(float[] dxyz) {
19  this.dx = dxyz[0];
20  this.dy = dxyz[1];
21  this.dz = dxyz[2];
22  }
23 }
VerticeNormal(float dx, float dy, float dz)
Impressum