org.oscim.utils.math.Vec3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vtm Show documentation
Show all versions of vtm Show documentation
OpenGL vector map library written in Java - running on Android, iOS, Desktop and within the browser.
package org.oscim.utils.math;
public class Vec3 {
public double x, y, z;
public Vec3() {
}
public Vec3(double x, double y, double z) {
this.x = x;
this.y = y;
this.z = z;
}
public void set(double x, double y, double z) {
this.x = x;
this.y = y;
this.z = z;
}
}