cesium-examples/VisualTool/Apps/Libs/wind/Particle.js

15 lines
271 B
JavaScript
Raw Normal View History

//define([],function () {
var Particle = function () {
this.x = null;
this.dx = null;
this.dx = null;
this.y = null;
this.age = null;
this.birthAge = null;
this.path = null;
};
// return Particle;
//})