예제 #1
0
        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);
            }
        }
예제 #2
0
 public ShapePoint(BinaryReader br) : base(br)
 {
     point = new  ShPoint(br);
 }