Skip to main content

MjcfLoaderOptions

Struct MjcfLoaderOptions 

Source
pub struct MjcfLoaderOptions {
Show 13 fields pub create_colliders_from_collision_shapes: bool, pub create_colliders_from_visual_shapes: bool, pub apply_imported_mass_props: bool, pub enable_joint_collisions: bool, pub make_roots_fixed: bool, pub trimesh_flags: TriMeshFlags, pub shift: Pose, pub scale: f32, pub collider_blueprint: ColliderBuilder, pub rigid_body_blueprint: RigidBodyBuilder, pub contact_filter_mode: ContactFilterMode, pub skip_plane_geoms: bool, pub disable_joint_motors: bool,
}
Expand description

Configuration for MjcfRobot::from_model.

Fields§

§create_colliders_from_collision_shapes: bool

Build colliders for <geom> elements that participate in contact (contype != 0 or conaffinity != 0). Default true.

§create_colliders_from_visual_shapes: bool

Build colliders for <geom> elements that don’t participate in contact (visual-only, contype == 0 && conaffinity == 0). Default false.

§apply_imported_mass_props: bool

Use the model’s <inertial> elements (or compiler-derived inertias) to set the rigid-body’s mass properties. Default true.

§enable_joint_collisions: bool

Allow contacts between two bodies sharing a joint. Default false.

§make_roots_fixed: bool

If true, the rigid-bodies at the root of the kinematic chains are initialized as RigidBodyType::Fixed. Default false.

§trimesh_flags: TriMeshFlags

Trimesh flags applied to mesh colliders when the default mesh converter is used.

§shift: Pose

Transform appended to every created rigid-body (default identity).

§scale: f32

Uniform scale applied to lengths read from the MJCF (default 1.0).

§collider_blueprint: ColliderBuilder

Blueprint applied to every collider created by the loader (default has density 0 — physical mass comes from <inertial>).

§rigid_body_blueprint: RigidBodyBuilder

Blueprint applied to every rigid-body created by the loader (default dynamic — root bodies are fixed if Self::make_roots_fixed).

§contact_filter_mode: ContactFilterMode

How to encode contype/conaffinity into rapier InteractionGroups.

§skip_plane_geoms: bool

If true, <geom type="plane"> elements are skipped entirely (no collider is created, the geom doesn’t contribute to derived inertia, and the body it belonged to is unaffected).

Default true.

§disable_joint_motors: bool

If true, skip the per-joint motor setup that the loader normally applies for <joint stiffness>, <joint springdamper>, and <joint frictionloss> attributes (springs and Coulomb-friction approximations).

<joint damping> is intentionally not affected by this flag — per-DoF damping is a dynamics-level friction term, not a motor, and the multibody-joint insertion path still routes <joint damping> values through the multibody’s per-DoF damping vector. (The impulse-joint path has no per-DoF damping buffer, so damping is lost there when this flag is on.)

The joint kinematic structure (type, axis, anchor, limits) is still honored. Useful when:

  • you want pure kinematic dynamics for debugging,
  • the model declares spring stiffness that’s too high for your simulation timestep,
  • you intend to drive every joint yourself through MjcfRobotHandles::apply_controls and don’t want the loader’s default motors fighting your controller.

Default false.

Trait Implementations§

Source§

impl Clone for MjcfLoaderOptions

Source§

fn clone(&self) -> MjcfLoaderOptions

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for MjcfLoaderOptions

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for MjcfLoaderOptions

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Converts Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Converts Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Converts &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Converts &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSend for T
where T: Any + Send,

Source§

fn into_any_send(self: Box<T>) -> Box<dyn Any + Send>

Converts Box<Trait> (where Trait: DowncastSend) to Box<dyn Any + Send>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_sync(self: Box<T>) -> Box<dyn Any + Send + Sync>

Converts Box<Trait> (where Trait: DowncastSync) to Box<dyn Any + Send + Sync>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Converts Arc<Trait> (where Trait: DowncastSync) to Arc<Any>, which can then be downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.