Package org.openpixi.pixi.physics.particles

Examples of org.openpixi.pixi.physics.particles.ParticleLoader


   *
   * !!! IMPORTANT !!! Always returns deep copy of the actual particle list!
   */
  public List<Particle> getParticles() {
    if (particles.size() == 0) {
      this.particles = (new ParticleLoader()).load(defaultParticleFactories(),
          simulationWidth, simulationHeight, gridCellsX, gridCellsY);
    }

    return cloneParticles();
  }
View Full Code Here

TOP

Related Classes of org.openpixi.pixi.physics.particles.ParticleLoader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.