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

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

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