Interface ICircleQueryOperation
Inherited Members
System.IDisposable.Dispose()
Namespace: Mars.Core.Data.Wrapper
Assembly: Mars.Core.dll
Syntax
public interface ICircleQueryOperation : IOperation, IPlatform, IDisposable
Methods
| Improve this Doc View SourceCircle(Position, Double)
Performs a circle query, getting all data within the given
radius
and
retrieved from the source
position.
Declaration
IEnumerable<int> Circle(Position source, double radius)
Parameters
Type | Name | Description |
---|---|---|
Position | source | The center of the circle query. |
System.Double | radius | The radius expanding the circle. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.Int32> |
Returns a collection of IStructuredDataGeometry object intersecting with the
circle description by given source and radius .
|