pub trait Density<P, D> { // Required method fn density(&self, at: P) -> D; }
Density function.
P
D
Calculate density at the given point.