Package gov.nasa.arc.mct.fastplot.bridge

Examples of gov.nasa.arc.mct.fastplot.bridge.AbstractAxis


        return settings.getMaxTime();
      }

      @Override
      public double getActualMinimum(PlotViewManifestation view) {
        AbstractAxis axis = view.getPlot().getPlotTimeAxis();
        return Math.min(axis.getStart(), axis.getEnd());
      }

      @Override
      public double getActualMaximum(PlotViewManifestation view) {
        AbstractAxis axis = view.getPlot().getPlotTimeAxis();
        return Math.max(axis.getStart(), axis.getEnd());
      }
    };
   
    final PlotSettingsAxisGroup nonTimeGroup = new PlotSettingsAxisGroup(false) {
      private static final long serialVersionUID = 506645956367162100L;
View Full Code Here

TOP

Related Classes of gov.nasa.arc.mct.fastplot.bridge.AbstractAxis

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.