示例#1
0
 public MultiPartGeometryField(WordCount offset) : base(offset)
 {
     Box       = new BoundingBox2dField(offset);
     NumParts  = new IntField(Box.Offset + Box.Length, Endianness.Little);
     NumPoints = new IntField(NumParts.Offset + NumParts.Length, Endianness.Little);
 }
示例#2
0
 public MultiPatchShapeField(WordCount offset) : base(offset)
 {
     Box       = new BoundingBox2dField(offset);
     NumParts  = new IntField(offset + WordCount.FromBytes(32), Endianness.Little);
     NumPoints = new IntField(offset + WordCount.FromBytes(36), Endianness.Little);
 }
 public MultiPointMShapeField(WordCount offset) : base(offset)
 {
     Box       = new BoundingBox2dField(offset);
     NumPoints = new IntField(offset + Box.Length, Endianness.Little);
 }