BuildingCoder.CmdSpaceAdjacency.Segment.Parallel C# (CSharp) Method

Parallel() public method

public Parallel ( Segment a ) : bool
a Segment
return bool
            public bool Parallel( Segment a )
            {
                return ( IsVertical && a.IsVertical )
                  || ( IsHorizontal && a.IsHorizontal )
                  || Util.IsEqual( Slope, a.Slope );
            }