/// <summary> /// Adds anchorToAdd to targetAnchor as Outgoing Anchor. /// </summary> /// <param name="targetAnchor"></param> /// <param name="anchorToAdd"></param> public static void AddOutgoingSpline(Anchor targetAnchor, Anchor anchorToAdd) { AddSpline(targetAnchor, anchorToAdd); }
/// <summary> /// Removes Redundant spline for anchors incoming and outgoing splines /// </summary> /// <param name="anchor"></param> public static void CleanupSplines(Anchor anchor) { RemoveRedundantSplinesFor(anchor.OutgoingSplines); RemoveRedundantSplinesFor(anchor.IncomingSplines); }
/// <summary> /// Adds anchorToAdd to targetAnchor as Incoming Anchor /// </summary> /// <param name="targetAnchor"></param> /// <param name="anchorToAdd"></param> public static void AddIncomingSpline(Anchor targetAnchor, Anchor anchorToAdd) { AddSpline(anchorToAdd, targetAnchor); }