Example #1
0
 public Segment(int mSegmentID, Knoop mBeginknoop, Knoop mEindknoop, List <Punt> mVertices)
 {
     SegmentID  = mSegmentID;
     Beginknoop = mBeginknoop;
     Eindknoop  = mEindknoop;
     Vertices   = mVertices;
 }
Example #2
0
 public bool Equals(Knoop other)
 {
     if ((other.KnoopID == this.KnoopID) && (other.Equals(this.Punt)))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }