예제 #1
0
 public RwClumpNode(RwNode parent)
     : base(RwNodeId.RwClumpNode, parent)
 {
     Atomics            = new List <RwAtomicNode>();
     FrameList          = new RwFrameListNode(this);
     GeometryList       = new RwGeometryListNode(this);
     mExtensionNodeNode = new RwExtensionNode(this);
     mStructNode        = new RwClumpStructNode(this);
 }
예제 #2
0
 internal RwGeometryListStructNode(RwGeometryListNode listNode)
     : base(RwNodeId.RwStructNode, listNode)
 {
     mGeometryCount = listNode.Count;
 }