Curve.RebuildElmo(.....); Api c# return null!


    private void RunScript(
		Curve crv,
		int count,
		int deg,
		bool PTarget,
		ref object curve)
    { Component.Name="Rebuild Elmo";Component.NickName="Elmo";Component.Description="Elmo C# Rhino9Wip";
       var c= crv.RebuildElmo(count,deg,PTarget);
       curve=c;
}

HI @Gijs
@dale
@pastrana
The method Curve.RebuildElmo(int pointCount, int degree, bool target) always returns null
Is this a bug? !

is it Bug? Test in:Rhino 9 SR0 2025-10-28 (Rhino WIP, 9.0.25301.12305)
RebuildElmo c# Api.gh (12.2 KB)

Hi @flexibility,

This may be obsolete. For now, you might use the existing Curve.Rebuild method.

– Dale