Struct ncollide2df64::narrow::algorithm::johnson_simplex::RecursionTemplate
pub struct RecursionTemplate { // some fields omitted }
Set of indices to explain to the JohnsonSimplex how to do its work. Building this is very time consuming, and thus should be shared between all instances of the Johnson simplex.
Methods
impl RecursionTemplate
fn new(dim: uint) -> Arc<~[RecursionTemplate]>
Creates a new set of Recursion simplex sharable between any Johnson simplex having a
dimension inferior or equal to dim
.
Trait Implementations
impl Eq for RecursionTemplate
Automatically derived.
fn eq(&self, __arg_0: &RecursionTemplate) -> bool
fn ne(&self, __arg_0: &RecursionTemplate) -> bool
impl Clone for RecursionTemplate
Automatically derived.
fn clone(&self) -> RecursionTemplate
impl<__E: Encoder> Encodable<__E> for RecursionTemplate
Automatically derived.
fn encode(&self, __arg_0: &mut __E)
impl<__D: Decoder> Decodable<__D> for RecursionTemplate
Automatically derived.