Package eas.users.demos.panicSimulation

Examples of eas.users.demos.panicSimulation.StaticPanicObstacle


     * @param params
     */
    public PanicSceneWithColumn(String ident, ParCollection params) {
        super(ident, params);
        this.addAgent(
                new StaticPanicObstacle(110, null, params),
                new Vector2D(0, 0),
                0,
                new Vector2D(1, 1));

        this.addAgent(
                new StaticPanicObstacle(111, null, params),
                new Vector2D(0, 98),
                0,
                new Vector2D(1, 1));

        this.addAgent(
                new StaticPanicObstacle(112, null, params),
                new Vector2D(0, 0),
                90,
                new Vector2D(1, 1));

        this.addAgent(
View Full Code Here


     * @param params
     */
    public PanicScene(String ident, ParCollection params) {
        super(ident, params);
        this.addAgent(
                new StaticPanicObstacle(110, null, params),
                new Vector2D(0, 0),
                0,
                new Vector2D(1, 1));

        this.addAgent(
                new StaticPanicObstacle(111, null, params),
                new Vector2D(0, 98),
                0,
                new Vector2D(1, 1));

        this.addAgent(
                new StaticPanicObstacle(112, null, params),
                new Vector2D(0, 0),
                90,
                new Vector2D(1, 1));

        this.addAgent(
View Full Code Here

TOP

Related Classes of eas.users.demos.panicSimulation.StaticPanicObstacle

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.