Anyone have a custom script for tweening? Not simply the GH command “Tween,” but a full Python script.
Thanks!
not python, but should not be that difficult to translate:
Using RhinoScriptSyntax:
You can find what rhino uses in Rhinocommon: https://developer.rhino3d.com/api/RhinoCommon/html/Overload_Rhino_Geometry_Curve_CreateTweenCurves.htm
If you want good accurate factor based (rhino is division count based) tweening of curves like Pufferfish (that doesn’t use dense point divisions to cheat) then things get dramatically more complex, lots of conditions to cover.