Separate properties operations and rigid body behaviors in different modules + Doc
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Hydroxycarbamide 2022-08-11 23:35:40 +02:00
parent faa058e57d
commit 61b72f6a35
5 changed files with 449 additions and 340 deletions

View file

@ -1,3 +1,8 @@
/**
* A SizePointer is a pointer in a 1 dimensional array of width/space
* x being the address where the pointer is pointing
* width being the overall (un)allocated space affected to the address
*/
export interface SizePointer {
x: number
width: number