Generate a circle from multiple points with python not Rhino Command

Hi,

I know that there are multiple points in rhino to generate a circle. Can python achieve this function? Instead of using rs.command ("_Circle _FitPoints", True),Or can Rhino’s development code be implemented?

Thank you.

Hi @Alen_Russ,

Use the rg.Circle.TryFitCircleToPoints method.

Thank you.