blob: 8953b5584c2a9acb1b28f75032591ca33b8d11bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { Component } from '@serpentity/serpentity';
/*
* Force component, stores the components of a force vector
* Public members:
* -x <Number> // the x component of force vector
* -y <Number> // the y component of force vector
* -z <Number> // the z component of force vector
*/
module export class Force extends Component {
constructor(config) {
super(config)
this.x = this.x || 0;
this.y = this.y || 0;
this.z = this.z || 0;
}
};
|