package mightypork.utils.math.coord; import mightypork.utils.math.constraints.NumberConstraint; /** * 2D coord for anonymous implementations.
* Operations yield a new {@link MutableCoord} with the result. * * @author MightyPork */ public abstract class SynthCoord2D extends VecView { @Override public abstract double x(); @Override public abstract double y(); @Override public double z() { return 0; } }