Example #1
0
 public OcLayer2DManager(V3dView view, Control control)
 {
     _control = control;
     _layer   = new Visual3dLayer(view.View.ViewManager, AspectTypeOfLayer.Aspect_TOL_OVERLAY, false);
     if (_control == null)
     {
         return;
     }
     control.Resize += ViewResize;
 }
Example #2
0
 public OcLayer2D(Visual3dLayer layer)
 {
     _layer = layer;
     Color  = Color.Black;
 }