Visual Computing Library
|
A concept for a container that stores Point samples. More...
#include <vclib/concepts/space/sampler.h>
A concept for a container that stores Point samples.
A type satisfies this concept if it provides the following interface:
o.samples()
: returns a container of samples in the sampler.o.clear()
: clears all previously contained samples.o.reserve(uint())
: reserves memory for the given number of samples.o.resize(uint())
: resizes the sampler to the given number of samples.T | The type to be tested for conformity to the SamplerConcept. |