Esempio n. 1
0
 public void Register(IThreeNodeTable t)
 {
     Debug.Assert(tables.ContainsKey(t.ValueType) == false, "중복 추가 방지");
     tables[t.ValueType] = t;
 }
Esempio n. 2
0
 public ThreeSceneRoot()
 {
     metadata        = new MetadataElem();
     sharedNodeTable = CreateSharedNodeTable();
 }
Esempio n. 3
0
 public AFrameExportVisitor(IThreeNodeTable sharedNodeTable)
 {
     factory = new AFrameNodeFactory(sharedNodeTable);
 }
 public AFrameNodeFactory(IThreeNodeTable sharedNodeTable)
 {
     this.sharedNodeTable = sharedNodeTable;
 }