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 whenever wmath is added without default-features = false somewhere in the dependency tree.

use_std default full?
use_alloc full?
full = use_alloc, use_std
cgmath cgmath_ops?

use cgmath as math library

Enables cgmath of math_adapter

nalgebra nalgebra_ops?

use nalgebra as math library

Enables 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 library

Enables cgmath_ops of math_adapter

nalgebra_ops = nalgebra

reuse operands and function of nalgebra as math library

Enables nalgebra_ops of math_adapter