示例#1
0
 protected override Shape convertShapeFromGetDocuments(Spatial4n.Core.Shapes.Shape shape)
 {
     return shape.GetBoundingBox();
 }
 private SpatialArgs q(Spatial4n.Core.Shapes.IPoint pt, double distDEG, double distErrPct)
 {
     IShape shape = ctx.MakeCircle(pt, distDEG);
     SpatialArgs args = new SpatialArgs(SpatialOperation.Intersects, shape);
     args.DistErrPct = (distErrPct);
     return args;
 }