Exemplo n.º 1
0
        public bool Intersects(Wire other)
        {
            Debug.Assert(other != null);

            return Math.Sign(A - other.A) != Math.Sign(B - other.B);
        }
Exemplo n.º 2
0
        public bool Intersects(Wire other)
        {
            Debug.Assert(other != null);

            return(Math.Sign(A - other.A) != Math.Sign(B - other.B));
        }