public KnifeToolTable()
        {
            KnifeTools = new Dictionary <String, KnifeTool>();

            KnifeTool tool = new KnifeTool();

            tool.Name             = "默认";
            KnifeTools[tool.Name] = tool;
        }
Exemple #2
0
 public KnifeToolInstance()
 {
     Position    = new Vector3(0, 0, 0);
     Parameters  = new KnifeTool();
     Direction   = -Vector3.UNIT_Z;
     ZStart      = 3;
     ZEnd        = -5;
     ZSafeHeight = 150;
     ZNumber     = 1;
 }