Examples of PanControls


Examples of gov.nasa.arc.mct.fastplot.bridge.controls.PanControls

    List<ControllableAxis> observableAxes = new ArrayList<ControllableAxis>();
    for (AbstractAxis axis : newPlot.getAxes()) {
      if (axis != null && axis.getVisibleOrientation() != null) {
        ControllableAxis a = new ControllableAxis(newPlot, axis);
        observableAxes.add(a);
        newPlot.attachLocalControl(new PanControls(a));
        newPlot.attachLocalControl(new ZoomControls(a));
        newPlot.attachLocalControl(new CornerResetButton(a));
        for (AbstractAxisBoundManager mgr : newPlot.getBoundManagers(a.getVisibleOrientation())) {
          newPlot.attachLocalControl(new BoundaryArrow(mgr));
        }
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.