Example #1
0
        void item_Click(object sender, EventArgs e)
        {
            EnumDEC type = (EnumDEC)((ToolStripMenuItem)sender).Tag;

            if (Mesh == null)
            {
                return;
            }

            DECController.Instance.Run(Mesh, type);

            OnChanged(EventArgs.Empty);
        }
Example #2
0
        public void Run(TriMesh mesh, EnumDEC type)
        {
            SpinForm from = new SpinForm(mesh);

            from.UpdateDeformation("D:\\bumpy.tga", 5);
        }
Example #3
0
        public void Run(TriMesh mesh, EnumDEC type)
        {

            SpinForm from = new SpinForm(mesh);
            from.UpdateDeformation("D:\\bumpy.tga", 5);
        }