Package bs.bs2d.gui.plot

Examples of bs.bs2d.gui.plot.PlotPanel


    private TriMesh2D mesh;
    private MeshPlotter meshPlotter;
   
   
    public LoadcaseView(){
        content = new PlotPanel();
        controls = new LoadcaseViewControls();
        menus = buildMenus();
    }
View Full Code Here


    private Rectangle2D meshBounds;
    private MeshPlotter meshPlotter;
   
   
    public MeshView(){
        content = new PlotPanel();
        controls = new MeshViewControls(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                if(bsl != null)
View Full Code Here

    private AreaSetPlotter asPlot;
   
    BusyStateListener bsl;
   
    public InfillAreaView(){
        content = new PlotPanel();
        controls = new InfillAreaViewControls(new ActionListener() {
           
            @Override
            public void actionPerformed(ActionEvent e) {
                float thrsh = controls.getAreaThreshold();
View Full Code Here

    private TriMesh2D defMesh;
   
    BusyStateListener bsl;
   
    public ResultView(){
        content = new PlotPanel();
       
        ActionListener exUpdatePlot = new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
View Full Code Here

    private ColorMap.Style colorMapStyle;
   
    BusyStateListener bsl;
   
    public ResultProcessingView(){
        content = new PlotPanel();
       
        ActionListener alThrsh = new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
View Full Code Here

        JMenuItem mitSStoCB = new JMenuItem("To Clipboard");
        mitSStoCB.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                PlotPanel content = (PlotPanel)contentPanel.getTopComponent();
                Plottable plot = content.getPlotObject();
               
                Rectangle2D plotBounds = plot.getBounds();
                Rectangle2D imgBounds = new Rectangle2D.Float(0, 0, 400, 400);
               
                AffineTransform t1 = AffineTransform.getTranslateInstance(-plotBounds.getX(), -plotBounds.getY());
View Full Code Here

TOP

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

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.