crease
attribute__all__= ['crease']funccrease(base, *, count, x_range, h_range=0) -> CurveZigzag a curve around base with alternating lane offsets.
The first and last turning points land exactly on base; interior points alternate
between +x_range and -x_range offsets. h_range applies the same offsets
to height.
parambaseCurveThe curve to zigzag around.
paramcountintNumber of legs (at least 2).
paramx_rangeintLane offset amplitude for interior turning points.
paramh_rangeint= 0Height offset amplitude, in phase with x_range.
Returns
margrete_rpc.chart.util.curve.CurveA new :class:Curve with count linear legs zigzagging around base.