1

I need to draw a line representing a z-axis from the origin up x units. I was able to create an xy plane by assigning one to Model.Grid.Plane. For context I will be building a point cloud to insert as an entity on the grid (already figured that out).

I tried to look at examples but they seem overcomplicated for my needs. Any info would be greatly appreciated!

Kyle A
  • 13
  • 2

1 Answers1

0

Do you mean?

Line ln = new Line(0,0,0, 0,0,x);

model1.Entities.Add(ln, Color.Blue);
abenci
  • 8,422
  • 19
  • 69
  • 134