UNPKG

@dimforge/rapier2d-simd-compat

Version:

2-dimensional physics engine in Rust - official JS bindings. Compatibility package with inlined webassembly as base64.

14 lines (13 loc) 300 B
/** * A rule applied to combine coefficients. * * Use this when configuring the `ColliderDesc` to specify * how friction and restitution coefficient should be combined * in a contact. */ export declare enum CoefficientCombineRule { Average = 0, Min = 1, Multiply = 2, Max = 3 }