The method AddRhinoObject with param CustomCurveObject is missing

I am working on custom objects.
I think the following method is missing :

ObjectTable.AddRhinoObject(CustomCurveObject)

Can you confirm that ? And if true add it to the next update ?
Thanks

Blockquote

Hi @lionpeloux,

Review the SampleCsCustomLine.cs and let me know if you have any questions.

– Dale

Hi Dale,

My point is that you have a method ObjectTable.AddRhinoObject() with no HistoryRecord param for :

  • CustomBrepObject
  • CustomMeshObject
  • CustomPointObject

… but not for a CustomCurveObject. So I feel this one is probably intended but is missing.

For now I am using ObjectTable.AddRhinoObject(CustomCurveObject, HistoryRecord) with HistoryRecord= null.