SPH
|
Generic generator of random vectors using sampling with given PDF. More...
#include <VectorRng.h>
Public Member Functions | |
VectorPdfRng (const Box &box, const Function< Float(const Vector &)> &pdf=[](const Vector &) { return 1._f;}, const Function< Float(const Vector &)> &jacobian=[](const Vector &) { return 1._f;}, const Float maximalPdf=0._f) | |
Vector | operator() () |
![]() | |
Noncopyable ()=default | |
Noncopyable (const Noncopyable &)=delete | |
Noncopyable (Noncopyable &&)=default | |
Noncopyable & | operator= (const Noncopyable &)=delete |
Noncopyable & | operator= (Noncopyable &&)=default |
Generic generator of random vectors using sampling with given PDF.
PDF does NOT have to be normalized (integral does not have to be 1).
Definition at line 60 of file VectorRng.h.
|
inline |
Construct a random vector generator.
box | bounds for minimal and maximal random values |
Used PDF. Default value means uniform sampling. Does not have to be normalized, but must return strictly non-negative values. | |
jacobian | Used Jacobian if other coordinate system is to be used. Default is cartesian system. |
maximalPdf | Maximal value of given PDF. By default, the value is estimated from the function itself. |
Definition at line 76 of file VectorRng.h.
|
inline |
Definition at line 97 of file VectorRng.h.