You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Returns a 2D Catenary path, which is the path a chain held at both ends will take.
875
+
// The path will have the endpoints at `[±width/2, 0]`, and the middle of the path will droop
876
+
// towards Y- if the given droop= or angle= is positive. It will droop towards Y+ if the
877
+
// droop= or angle= is negative. You *must* specify one of droop= or angle=.
878
+
// Arguments:
879
+
// width = The straight-line distance between the endpoints of the path.
880
+
// droop = If given, specifies the height difference between the endpoints and the hanging middle of the path. If given a negative value, returns an arch *above* the Y axis.
881
+
// n = The number of points to return in the path. Default: 100
882
+
// ---
883
+
// angle = If given, specifies the angle that the path will droop by at the endpoints. If given a negative value, returns an arch *above* the Y axis.
0 commit comments