/***************************************************/ /**** Public Methods - Mesh ****/ /***************************************************/ public static void RenderRhinoWires(RHG.Mesh mesh, Rhino.Display.DisplayPipeline pipeline, Color bhColour, int thickness) { if (mesh.VertexColors.Count == 0) { pipeline.DrawMeshWires(mesh, bhColour); } else if (GH.CentralSettings.PreviewMeshEdges) { pipeline.DrawMeshWires(mesh, bhColour); } }