Trait pointprocesses::generalized::Set [−][src]
pub trait Set {
fn contains(&self, p: &Array<f64, Ix1>) -> bool;
fn bounding_box(&self) -> Array<f64, Ix2>;
}structs implementing this trait represent regions in n-dimensional space.
Required Methods
fn contains(&self, p: &Array<f64, Ix1>) -> bool
Returns whether or not a given vector p lies in the instance.
fn bounding_box(&self) -> Array<f64, Ix2>
Returns a bounding box for the set. This function is used for point process simulation by rejection, but can also be used to implement a Monte Carlo estimation of the set"s measure.