BuildingCoder.CmdSpaceAdjacency.Segment.Parallel C# (CSharp) 메소드

Parallel() 공개 메소드

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