Cargo Features
[dependencies]
wmath = { version = "0.3.8", default-features = false, features = ["use_std", "use_alloc", "full", "cgmath", "nalgebra", "winit", "default_ops", "cgmath_ops", "nalgebra_ops"] }
- default = use_std
-
The
use_std
feature is set by default wheneverwmath
is added without
somewhere in the dependency tree.default-features = false - use_std default full?
- use_alloc full?
- full = use_alloc, use_std
- cgmath cgmath_ops?
-
use
cgmath
as math libraryEnables cgmath of math_adapter
- nalgebra nalgebra_ops?
-
use
nalgebra
as math libraryEnables nalgebra of math_adapter
- winit
-
implement interfaces for vectors of
winit
Enables winit of math_adapter
- default_ops
-
reuse operands and function of default math library
Enables default_ops of math_adapter
- cgmath_ops = cgmath
-
reuse operands and function of
cgmath
as math libraryEnables cgmath_ops of math_adapter
- nalgebra_ops = nalgebra
-
reuse operands and function of
nalgebra
as math libraryEnables nalgebra_ops of math_adapter