export class physicsObject{
name : string
//array of floats [3]
position : number[] = []
rotation : number[] = []
velocity : number[] = []
angularVelocity : number[] = []
}