/// <summary>
 /// Sets the options of this connection
 /// </summary>
 /// <param name="me">Owner of the connection</param>
 /// <param name="other">the partner Control Point </param>
 /// <param name="heading">the heading mode</param>
 /// <param name="sync">the synchronization mode</param>
 /// <param name="tags">tags of this connection</param>
 public void Set(CurvySplineSegment me, CurvySplineSegment other, HeadingMode heading, SyncMode sync, params string[] tags)
 {
     Owner = me;
     Other = other;
     Other.ConnectedBy.Add(me);
     Heading = heading;
     Sync    = sync;
     SetTags(tags);
 }
Beispiel #2
0
 /// <summary>
 /// Sets the options of this connection
 /// </summary>
 /// <param name="me">Owner of the connection</param>
 /// <param name="other">the partner Control Point </param>
 /// <param name="heading">the heading mode</param>
 /// <param name="sync">the synchronization mode</param>
 /// <param name="tags">tags of this connection</param>
 public void Set(CurvySplineSegment me, CurvySplineSegment other, HeadingMode heading, SyncMode sync, params string[] tags)
 {
     Owner = me;
     Other = other;
     Other.ConnectedBy.Add(me);
     Heading = heading;
     Sync = sync;
     SetTags(tags);
 }