EOS 2  1.1.0
Einfache Objektbasierte Sprache
Vertice.java
gehe zur Dokumentation dieser Datei
1 package de.lathanda.eos.robot.geom3d;
8 public class Vertice {
9  public final float x;
10  public final float y;
11  public final float z;
12  public Vertice(float x, float y, float z) {
13  this.x = x;
14  this.y = y;
15  this.z = z;
16  }
17  public Vertice(float[] xyz) {
18  this.x = xyz[0];
19  this.y = xyz[1];
20  this.z = xyz[2];
21  }
22 }
Vertice(float x, float y, float z)
Definition: Vertice.java:12
Impressum