Putting a fix for this for 8.18 to support the 4 ways of accessing node in code components. The NodeInCodeFunctions.TriRemesh
is now a special case just for Kangaroo2 to fix the regression.
from Rhino.NodeInCode import Components
Components.NodeInCodeFunctions.Kangaroo2Component_TriRemesh (mesh, None, None, None, 1, 25)
Components.NodeInCodeFunctions.TriRemesh(mesh, None, None, None, 1, 25)
import ghpythonlib.components as ghcomp
ghcomp.Kangaroo2Component.TriRemesh(mesh, None, None, None, 1, 25)
ghcomp.TriRemesh(mesh, None, None, None, 1, 25)
IromPython
Python 3 (Cases using NodeInCodeFunctions
directly are awaiting fix for RH-85966)