
org.bimserver.geometry.Vector2d Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of PluginBase Show documentation
Show all versions of PluginBase Show documentation
Base project for BIMserver plugin development. Some plugins mights also need the Shared library
package org.bimserver.geometry;
public class Vector2d {
public static final Vector2d ZERO = null;
public double x;
public double y;
public double z;
public Vector2d(double d, double e) {
// TODO Auto-generated constructor stub
}
public Vector2d() {
// TODO Auto-generated constructor stub
}
public double getX() {
return x;
}
public double getY() {
return y;
}
public double getZ() {
return z;
}
public void y(double y) {
this.y = y;
}
public void z(double z) {
this.z = z;
}
public void x(double x) {
this.x = x;
}
public void sub(Vector2d center) {
// TODO Auto-generated method stub
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy