예제 #1
0
 public GeometryGroup(Context context) : base(context)
 {
     CheckError(Api.rtGeometryGroupCreate(context.InternalPtr, ref InternalPtr));
     mCollection = new NodeCollection <GeometryInstance>(this);
 }
예제 #2
0
 public Group(Context context) : base(context)
 {
     mCollection = new NodeCollection <ContainerNode>(this);
     CheckError(Api.rtGroupCreate(context.InternalPtr, ref InternalPtr));
 }
예제 #3
0
 internal GeometryGroup(Context context, IntPtr mGroup) : base(context)
 {
     InternalPtr = mGroup;
     mCollection = new NodeCollection <GeometryInstance>(this);
 }
예제 #4
0
 internal Group(Context context, IntPtr ptr) : base(context)
 {
     mCollection = new NodeCollection <ContainerNode>(this);
     InternalPtr = ptr;
 }