Package fr.soleil.salsa.entity.event

Examples of fr.soleil.salsa.entity.event.Trajectory2DXModel


        if (yController) {
            newTrajectory = new Trajectory2DYModel();
        } else if (hcsConfig) {
            newTrajectory = new TrajectoryHCSModel();
        } else if (yConfig) {
            newTrajectory = new Trajectory2DXModel();
        } else {
            newTrajectory = new Trajectory1DModel();
        }

        if (newTrajectory != null) {
View Full Code Here


    public ITrajectory createTrajectory(IActuator actuator) {
        ITrajectory trajectory = null;
        if (this instanceof IRange1D) {
            trajectory = new Trajectory1DModel();
        } else if (this instanceof IRange2DX) {
            trajectory = new Trajectory2DXModel();
        } else if (this instanceof IRange2DY) {
            trajectory = new Trajectory2DYModel();
        } else if (this instanceof IRangeHCS) {
            trajectory = new TrajectoryHCSModel();
        } else if (this instanceof IRangeEnergy) {
View Full Code Here

    }


    @Override
    protected ITrajectory initModel() {
        return new Trajectory2DXModel(this);
    }
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.entity.event.Trajectory2DXModel

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.