[][src]Trait oxygengine_physics_2d::prelude::object::BodyDesc

pub trait BodyDesc<N> where
    N: RealField
{ type Body: Body<N>; fn build_with_handle(
        &self,
        gworld: &mut GeometricalWorld<N, Index, Index>,
        handle: Index
    ) -> Self::Body; }

A abstract body descriptor to be passed to the physics World to create a body.

Associated Types

type Body: Body<N>

The type of body being generated.

Loading content...

Required methods

fn build_with_handle(
    &self,
    gworld: &mut GeometricalWorld<N, Index, Index>,
    handle: Index
) -> Self::Body

Called by the World to create a body with the given allocated handle.

Loading content...

Implementors

Loading content...