Example #1
0
 public bool IsLongerThan(LineSegmentFr that)
 {
     return(LengthSquared() > that.LengthSquared());
 }
Example #2
0
 public bool isShorterThan(LineSegmentFr that)
 {
     return(LengthSquared() < that.LengthSquared());
 }
Example #3
0
 public bool IsEqualLength(LineSegmentFr that)
 {
     return(LengthSquared().Equals(that.LengthSquared()));
 }