Trait rhusics_ecs::WithLazyRigidBody [] [src]

pub trait WithLazyRigidBody {
    fn with_dynamic_rigid_body<P, Y, R, V, A, I, B, T>(
        &self,
        entity: Entity,
        shape: CollisionShape<P, T, B, Y>,
        pose: T,
        velocity: Velocity<V, A>,
        body: RigidBody<V::Scalar>,
        mass: Mass<V::Scalar, I>
    )
    where
        T: Pose<P::Point, R> + Clone + Component + Send + Sync + 'static,
        P: Primitive + Send + Sync + 'static,
        B: Bound<Point = P::Point> + Send + Sync + 'static,
        P::Point: EuclideanSpace<Scalar = V::Scalar> + Send + Sync + 'static,
        R: Rotation<P::Point> + Send + Sync + 'static,
        V: VectorSpace + Zero + Clone + Send + Sync + 'static,
        V::Scalar: BaseFloat + Send + Sync + 'static,
        A: Copy + Zero + Clone + Send + Sync + 'static,
        Y: Send + Sync + 'static,
        I: Send + Sync + 'static
;
fn with_static_rigid_body<S, P, Y, R, I, B, T>(
        &self,
        entity: Entity,
        shape: CollisionShape<P, T, B, Y>,
        pose: T,
        body: RigidBody<S>,
        mass: Mass<S, I>
    )
    where
        T: Pose<P::Point, R> + Clone + Component + Send + Sync + 'static,
        P: Primitive + Send + Sync + 'static,
        B: Bound<Point = P::Point> + Send + Sync + 'static,
        P::Point: EuclideanSpace<Scalar = S> + Send + Sync + 'static,
        S: BaseFloat + Send + Sync + 'static,
        R: Rotation<P::Point> + Send + Sync + 'static,
        Y: Send + Sync + 'static,
        I: Send + Sync + 'static
; }

Adds rigid body builder functions to LazyUpdate

Required Methods

Add dynamic rigid body components to entity

Type parameters:

  • P: Collision Primitive
  • Y: Collider
  • R: Rotational quantity
  • V: Vector
  • A: Angular velocity
  • I: Inertia
  • B: Bounding volume
  • T: Transform

Add static rigid body components to entity

Type parameters:

  • S: Scalar (f32 or f64)
  • P: Collision Primitive
  • Y: Collider
  • R: Rotational quantity
  • I: Inertia
  • B: Bounding volume
  • T: Transform

Implementations on Foreign Types

impl WithLazyRigidBody for LazyUpdate
[src]

[src]

[src]

Implementors