Package toxi.physics3d.behaviors

Examples of toxi.physics3d.behaviors.AttractionBehavior3D


        ParticleString3D s = new ParticleString3D(physics, new Vec3D(), stepDir,
                NUM_PARTICLES, 1, 0.1f);
        head = s.getHead();
        head.lock();
        tail = s.getTail();
        physics.addBehavior(new AttractionBehavior3D(new Vec3D(), 400, 0.5f));
    }
View Full Code Here


        gfx = new ToxiclibsSupport(this);
        physics = new VerletPhysics3D();
        physics.setDrag(0.15f);
        physics.setWorldBounds(new AABB(new Vec3D(), 250));
        physics.addBehavior(new GravityBehavior3D(new Vec3D(0, 0.2f, 0)));
        physics.addBehavior(new AttractionBehavior3D(new Vec3D(), 500, 0.1f));
        for (int i = 0; i < NUM_PARTICLES; i++) {
            VerletParticle3D p = new VerletParticle3D(random(-250, 250), random(
                    -250, 250), random(-250, 250));
            physics.addParticle(p);
            for (int j = 0; j < i; j++) {
                physics.particles.get(j).addBehavior(
                        new AttractionBehavior3D(p, 50, -0.9f, 0.02f),
                        physics.getTimeStep());
            }
        }
    }
View Full Code Here

TOP

Related Classes of toxi.physics3d.behaviors.AttractionBehavior3D

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.