Cargo Features
[dependencies]
bevy_math = { version = "0.15.0-rc.2", default-features = false, features = ["serialize", "approx", "mint", "libm", "glam_assert", "debug_glam_assert", "rand", "curve", "bevy_reflect"] }
- default = bevy_reflect, curve, rand
-
These default features are set whenever
bevy_math
is added without
somewhere in the dependency tree.default-features = false - serialize
- approx
-
Enable approx for glam types to approximate floating point equality comparisons and assertions
- mint
-
Enable interoperation of glam types with mint-compatible libraries
- libm
-
Enable libm mathematical functions for glam types to ensure consistent outputs across platforms at the cost of losing hardware-level optimization using intrinsics
- glam_assert
-
Enable assertions to check the validity of parameters passed to glam
Enables glam-assert of glam
- debug_glam_assert
-
Enable assertions in debug builds to check the validity of parameters passed to glam
Enables debug-glam-assert of glam
- rand default
-
Enable the rand dependency for shape_sampling
Enables rand of glam and rand and rand_distr
rand:
Supply rngs for examples and tests
Affects
bevy_math::sampling
… - curve default
-
Include code related to the Curve trait
Affects
bevy_math::curve
…
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- bevy_reflect default