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