Quantcast
Channel: Rhino Developer - McNeel Forum
Viewing all articles
Browse latest Browse all 8532

Cast RhinoObject to CurveObject

$
0
0

@ing_sosa wrote:

Hi!

I'm using C# and VS2015 to build a FEM plugin for Rhino.

In one of my scripts I need to create many lines and add them to a CurveObject List.

When creating the line, I do:

Guid tmp = doc.Objects.AddLine(point1, point2);

So, tmp represents the Line Guid but no the Line itself. The only way i found to get a reference the Line itself as an object is:

Rhino.DocObjects.RhinoObject temp = doc.Objects.Find(tmp);

But of course, I cant add this RhinoObject to my CurveObject list. So, my question is if is there a way to cast my RhinoObject to a CurveObject or maybe I'm just missing a way to get a reference to the line as a CurveObject?

Thanks

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 8532

Trending Articles