Examples of XYPlotter


Examples of ptolemy.actor.lib.gui.XYPlotter

        // and the output of the expression as the vector length.
        PolarToCartesian polarToCartesian = new PolarToCartesian(this,
                "Polar to Cartesian");

        // Finally, the plotter.
        XYPlotter xyPlotter = new XYPlotter(this, "xyPlotter");
        xyPlotter.plot = new Plot();
        xyPlotter.plot.setGrid(false);
        xyPlotter.plot.setXRange(-3, 4);
        xyPlotter.plot.setYRange(-4, 4);
View Full Code Here

Examples of ptolemy.actor.lib.gui.XYPlotter

        Scale MINUS1 = new Scale(this, "MINUS1");
        Scale MINUS2 = new Scale(this, "MINUS2");
        Scale MINUS3 = new Scale(this, "MINUS3");

        XYPlotter myplot = new XYPlotter(this, "CTXYPlot");
        myplot.plot = new Plot();
        myplot.plot.setGrid(true);
        myplot.plot.setXRange(-25.0, 25.0);
        myplot.plot.setYRange(-25.0, 25.0);
        myplot.plot.setSize(400, 400);
View Full Code Here

Examples of ptolemy.actor.lib.gui.XYPlotter

        Integrator A = new Integrator(this, "IntegratorA");

        Scale MINUS = new Scale(this, "MINUS");

        //CTPlot ctPlot = new CTPlot(this, "CTPlot", ctPanel);
        XYPlotter xzPlot = new XYPlotter(this, "Helicopter Position");
        xzPlot.plot = new Plot();
        xzPlot.plot.setTitle("Helicopter Position");
        xzPlot.plot.setButtons(false);
        xzPlot.plot.setGrid(true);
        xzPlot.plot.setXRange(-1.0, 100.0);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.