Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rogue-savage-rats/src/mightypork/utils/math/coord/NumConstrVec.java

54 lines
897 B

package mightypork.utils.math.coord;
import mightypork.utils.math.constraints.NumberConstraint;
/**
* Coord view composed of given {@link NumberConstraint}s, using their current
* values.
*
* @author MightyPork
*/
class NumConstrVec extends VecView {
private final NumberConstraint constrX;
private final NumberConstraint constrY;
private final NumberConstraint constrZ;
public NumConstrVec(NumberConstraint x, NumberConstraint y, NumberConstraint z) {
this.constrX = x;
this.constrY = y;
this.constrZ = z;
}
public NumConstrVec(NumberConstraint x, NumberConstraint y) {
this.constrX = x;
this.constrY = y;
this.constrZ = NumberConstraint.ZERO;
}
@Override
public double x()
{
return constrX.getValue();
}
@Override
public double y()
{
return constrY.getValue();
}
@Override
public double z()
{
return constrZ.getValue();
}
}