예제 #1
0
 public OCCViewer()
 {
     View = new OCCTProxyD3D();
     View.InitOCCTProxy();
     CurrentMode    = CurrentAction3d.CurAction3d_Nothing;
     IsRectVisible  = false;
     DegenerateMode = true;
 }
예제 #2
0
 public OCCViewer()
 {
   View = new OCCTProxyD3D ();
   View.InitOCCTProxy ();
   CurrentMode = CurrentAction3d.CurAction3d_Nothing;
   IsRectVisible = false;
   DegenerateMode = true;
 }
예제 #3
0
    public TransparencyDialog()
    {
      //
      // Required for Windows Form Designer support
      //
      InitializeComponent();

      //
      // TODO: Add any constructor code after InitializeComponent call
      //
      myView = null;
    }
        public TransparencyDialog()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
            myView = null;
        }
예제 #5
0
        public MaterialDlg(OCCTProxyD3D theView)
        {
            this.InitializeComponent();

            if (theView == null)
            {
                MessageBox.Show("Fatal Error during the graphic initialisation", "Error!");
            }

            View = theView;

            SetInitialState();
        }
        public MaterialDlg( OCCTProxyD3D theView )
        {
            this.InitializeComponent();

            if ( theView == null )
            {
                MessageBox.Show( "Fatal Error during the graphic initialisation", "Error!" );
            }

            View = theView;

            SetInitialState();
        }