Interface ProjectedSampler<T>
-
- Type Parameters:
T
-
- All Known Implementing Classes:
IntervalSampler
,SelectiveSampler
public interface ProjectedSampler<T> extends Iterator, Sampler<T>
provides samples from a projected (SamplingProjector2D
) dimension. E.g. the color values from the color dimension when projecting the values onto the xy plane. ImplementsIterator
andSampler
to allow access to the (selected) values of the projected dimension- Author:
- Michael Zinsmaier, Martin Horn, Christian Dietz
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setRandomAccess(RandomAccess<T> srcAccess)
-
-
-
Method Detail
-
setRandomAccess
void setRandomAccess(RandomAccess<T> srcAccess)
- Parameters:
srcAccess
- sets the random access from which the sampler takes the values of the projected dimension
-
-