Exemple #1
0
 /// <summary>
 /// Copy constructor.  This is a
 /// shallow copy. The referred to FaultPoint will not be copied.
 /// </summary>
 /// <param name="other">The FaultMapPoint to be copied.</param>
 FaultVertex(FaultVertex other) :
     base(other)
 {
     point = other.point;
 }
Exemple #2
0
 public FaultVertex(IPositioned2D point)
 {
     this.point = point;
 }