Crates.io | appl |
lib.rs | appl |
version | 0.2.2 |
source | src |
created_at | 2021-09-24 06:10:17.79628 |
updated_at | 2021-09-24 09:55:59.992516 |
description | Appl is a physics engine powered by the Rapier library. It is currently 2d only. |
homepage | https://github.com/AribYadi/Appl.git |
repository | https://github.com/AribYadi/Appl.git |
max_upload_size | |
id | 455754 |
size | 38,957 |
use appl::*;
fn main() {
// Initialize Appl World
let mut appl = ApplWorld::new(Vect2 { x: 0.0, y: 9.81 }, 50.0);
// Create ground rigid body
let ground = appl.add_rigid_body(
BodyType::Static,
0.3,
BodyShape::Cuboid {
width: 64.0,
height: 32.0,
},
0.3,
Vect2 { x: 0.0, y: 320.0 }
);
// Create box1 rigid body
let box1 = appl.add_rigid_body(
BodyType::Dynamic,
0.3,
BodyShape::Cuboid {
width: 32.0,
height: 32.0,
},
0.3,
Vect2 { x: 0.0, y: 0.0 }
);
for _ in 0..200 {
// Update the world
appl.step();
// Prints box1 position
let box1_pos = appl.get_rigid_body_pos(box1);
println("{}, {}", box1_pos.x, box1_pos.y);
}
}
Any pull request are definitely welcomed and appreciated!
If you have any issues or questions, please open an issue and i will try to help you.
This project is in it's very very early stage and currently only works for 2d.