UNPKG

@xtor/cga.js

Version:

Xtor Compute Geometry Algorithm Libary 计算几何算法库

13 lines (11 loc) 230 B
export class Particle { constructor() { this.position = v3(); this.velocity = v3(); this.life = 10; this.elpase = 0; this.live = true; } update(deltaTime) { } }