public ShapePointGroup(BinaryReader br) : base(br) { bound = new Boundary(br); uint numParts = br.ReadUInt32(); numPoints = br.ReadUInt32(); points = new ShPoint[numPoints]; for (int j = 0; j < numParts; j++) { points[j] = new ShPoint(br); } }
public ShapePoint(BinaryReader br) : base(br) { point = new ShPoint(br); }