public WrappedRect(RectTransform linked) { linkedTransform = linked; top = new cassowary.Variable("top"); right = new cassowary.Variable("right"); bottom = new cassowary.Variable("bottom"); left = new cassowary.Variable("left"); }
// operator== is used for symbolics public bool equals(Variable other) { return(m_data == other.m_data); }
public static Constraint Ge( Term term, Variable variable ) { return Ge(new Expression( term ) , variable); }
public static Constraint Ge ( Expression expression, Variable variable ) { return Ge(expression,new Term( variable )); }