コード例 #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);
 }
コード例 #3
0
 public MultiPointMShapeField(WordCount offset) : base(offset)
 {
     Box       = new BoundingBox2dField(offset);
     NumPoints = new IntField(offset + Box.Length, Endianness.Little);
 }