This commit is contained in:
Daniel Mills
2021-01-08 10:12:10 -05:00
parent 3f9288c60f
commit 4b76b592d3
9 changed files with 252 additions and 20 deletions

View File

@@ -0,0 +1,46 @@
package com.volmit.iris.util;
public class AlignedPoint
{
private double x;
private double y;
private double z;
public AlignedPoint(double x, double y, double z)
{
this.x = x;
this.y = y;
this.z = z;
}
public double getX()
{
return x;
}
public void setX(double x)
{
this.x = x;
}
public double getY()
{
return y;
}
public void setY(double y)
{
this.y = y;
}
public double getZ()
{
return z;
}
public void setZ(double z)
{
this.z = z;
}
}