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

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

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