package mightypork.utils.math.constraints; import mightypork.utils.math.vect.Vect; /** * Element holding a vector, used for constraint building. * * @author MightyPork */ public interface VectBound { /** * @return the current vector. */ public Vect getVect(); }