예제 #1
0
 public double GetLength() => Geometry.GetLength(this);
예제 #2
0
 public bool Belongs(Segment segment) => Geometry.IsVectorInSegment(this, segment);
예제 #3
0
 public bool Contains(Vector vector) => Geometry.IsVectorInSegment(vector, this);
예제 #4
0
 public Vector Add(Vector secondVector) => Geometry.Add(this, secondVector);