C# Class PclUnit.Constraints.Pieces.BinaryConstraint

BinaryConstraint is the abstract base of all constraints that combine two other constraints in some fashion.
Inheritance: Constraint
Show file Open project: jbtule/PclUnit

Protected Properties

Property Type Description
left Constraint
right Constraint

Public Methods

Method Description
BinaryConstraint ( Constraint left, Constraint right )

Construct a BinaryConstraint from two other constraints

Method Details

BinaryConstraint() public method

Construct a BinaryConstraint from two other constraints
public BinaryConstraint ( Constraint left, Constraint right )
left Constraint The first constraint
right Constraint The second constraint

Property Details

left protected property

The first constraint being combined
protected Constraint left
return Constraint

right protected property

The second constraint being combined
protected Constraint right
return Constraint