Esempio n. 1
0
        public void CreateNewMeshView()
        {
            MeshView newMesh = new MeshView();

            newMesh.allStates = this.allStates;
            this.mesh         = newMesh;
        }
Esempio n. 2
0
        public Controller(Admin form)
        {
            this.form = form;
            form.SetConnector(this);

            this.serverConnection  = new MainServerConnection();
            this.allConnectedNodes = new List <Node>();
            this.dbServer          = new DB_Server();
            this.mesh = new MeshView();


            this.Init();
        }