コード例 #1
0
 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");
 }
コード例 #2
0
 // operator== is used for symbolics
 public bool equals(Variable other)
 {
     return(m_data == other.m_data);
 }
コード例 #3
0
public static Constraint  Ge(  Term term, Variable variable )
{
	return Ge(new Expression( term ) , variable);
}
コード例 #4
0
public static Constraint  Ge (  Expression expression,  Variable variable )
{
	return Ge(expression,new Term( variable ));
}