appl 0.1.0

Appl is a physics engine powered by Rapier. It is currently 2d only.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod rigidbody;
mod world;

use nalgebra::{
  vector,
  Vector2,
};

pub use rigidbody::*;
pub use world::*;

pub fn new_vec2<T>(x: T, y: T) -> Vector2<T> { vector![x, y] }