Package traer.physics

Examples of traer.physics.ParticleSystem


    super(parent, OUTPUT_W, OUTPUT_H);
   
    random = new Random();

    ps = new ParticleSystem( 0, 0, 0, particle_drag);

    // cada particula se conecta con el de abajo y el de la derecha
    particles   = new Particle[grid_HNodes][grid_VNodes];
    springs   = new Spring[(grid_HNodes) * (grid_VNodes)][2];                             

View Full Code Here


    super(parent, OUTPUT_W, OUTPUT_H);
   
    random = new Random();

    ps = new ParticleSystem( 0, 0, 0, particle_drag);

    // cada particula se conecta con el de abajo y el de la derecha
    particles   = new Particle[grid_HNodes][grid_VNodes];
    springs   = new Spring[(grid_HNodes) * (grid_VNodes)][2];                             

View Full Code Here

TOP

Related Classes of traer.physics.ParticleSystem

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.