Rhino.Display.DisplayPipeline.DrawConstructionPlane() bug

Hi @stevebaer,

there seems to be a bug with the method, my cplane is constructed like this:

cplane = Rhino.DocObjects.ConstructionPlane()
cplane.Plane = my_plane
cplane.DepthBuffered = False
cplane.GridSpacing = 1.0
cplane.GridLineCount = 100
cplane.ThickLineFrequency = 10
cplane.ShowAxes = True
cplane.ThinLineColor = Color.Red 
cplane.ThickLineColor = Color.Black 

It seems, thin lines are just drawn with the color of thick lines, my cplane shows only the black lines, red does not appear. This happens in RH6 SR34 and RH7 SR 6 (Windows), i am drawing it in a OnDynamicDraw event like so:

e.Display.DrawConstructionPlane(cplane)

thanks,
c.

I see this and am working on a fix
https://mcneel.myjetbrains.com/youtrack/issue/RH-64868

1 Like

Thank you @stevebaer.

_
c.