33 lines
828 B
Rust
33 lines
828 B
Rust
|
|
//! # Rapier
|
|||
|
|
//! Fast and deterministic WASM physics engine.
|
|||
|
|
|
|||
|
|
#![allow(non_snake_case)] // JS uses camelCase, so we will follow its convention for the generated bindings.
|
|||
|
|
// #![deny(missing_docs)]
|
|||
|
|
|
|||
|
|
extern crate nalgebra as na;
|
|||
|
|
#[cfg(feature = "dim2")]
|
|||
|
|
extern crate rapier2d as rapier;
|
|||
|
|
#[cfg(feature = "dim3")]
|
|||
|
|
extern crate rapier3d as rapier;
|
|||
|
|
#[macro_use]
|
|||
|
|
extern crate serde;
|
|||
|
|
|
|||
|
|
#[wasm_bindgen::prelude::wasm_bindgen]
|
|||
|
|
pub fn version() -> String {
|
|||
|
|
env!("CARGO_PKG_VERSION").to_string()
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#[wasm_bindgen::prelude::wasm_bindgen]
|
|||
|
|
pub fn reserve_memory(extra_bytes_count: u32) {
|
|||
|
|
let mut unused: Vec<u8> = vec![];
|
|||
|
|
unused.reserve(extra_bytes_count as usize);
|
|||
|
|
std::hint::black_box(&unused);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
pub mod control;
|
|||
|
|
pub mod dynamics;
|
|||
|
|
pub mod geometry;
|
|||
|
|
pub mod math;
|
|||
|
|
pub mod pipeline;
|
|||
|
|
pub mod utils;
|