Class PointSelection
- Namespace
- PureHDF.Selections
- Assembly
- PureHDF.dll
A selection which uses a collection of points to select the data.
public class PointSelection : Selection
- Inheritance
-
PointSelection
Constructors
PointSelection(ulong[,])
Initializes a new instance of the PointSelection class.
public PointSelection(ulong[,] points)
Parameters
pointsulong[,]The points to be selected.
Properties
TotalElementCount
Gets the total number of elements which is used to preallocate the returned buffer.
public override ulong TotalElementCount { get; }
Property Value
Methods
Walk(ulong[])
The walk function is used to walk through the dataset and select the requested data.
public override IEnumerable<Step> Walk(ulong[] limits)
Parameters
limitsulong[]The dataset dimensions.
Returns
- IEnumerable<Step>
An enumerable which provides a sequence of steps to select the requested data.