Package bs.bs2d.gui.plot

Examples of bs.bs2d.gui.plot.ScalarPlot


        if(deformed)
            msh = defMesh;
        else
            msh = results.getMesh();
       
        ScalarPlot sp;
        sp = ScalarPlot.createLinearScalePlot(msh, scalar, res, styleID);
        applyViewSettings(sp);
        return sp;
    }
View Full Code Here


            int res = controls.getResolution();
            scalarPlot = ScalarPlot.createUniformAreaPlot(results.getMesh(), scalar, res, colorMapStyle);
            controls.setThresholds(scalarPlot.getThresholds());
        } else {
            thresholds = controls.getThresholds();
            scalarPlot = new ScalarPlot(results.getMesh(), scalar, thresholds, colorMapStyle);
        }
       
        content.setPlotObject(scalarPlot, false);
    }
View Full Code Here

TOP

Related Classes of bs.bs2d.gui.plot.ScalarPlot

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.