Class PlaneAspect


  • public class PlaneAspect
    extends java.lang.Object
    Defines the data range covered by a PlaneSurface.
    Since:
    19 Feb 2013
    Author:
    Mark Taylor
    • Constructor Summary

      Constructors 
      Constructor Description
      PlaneAspect​(double[] xlimits, double[] ylimits)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      double getXMax()
      Returns X data coordinate upper bound.
      double getXMin()
      Returns X data coordinate lower bound.
      double getYMax()
      Returns Y data coordinate upper bound.
      double getYMin()
      Returns Y data coordinate lower bound.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • PlaneAspect

        public PlaneAspect​(double[] xlimits,
                           double[] ylimits)
        Constructor.
        Parameters:
        xlimits - 2-element array giving (min,max) X data coordinates
        ylimits - 2-element array giving (min,max) Y data coordinates
    • Method Detail

      • getXMin

        public double getXMin()
        Returns X data coordinate lower bound.
        Returns:
        x min
      • getXMax

        public double getXMax()
        Returns X data coordinate upper bound.
        Returns:
        x max
      • getYMin

        public double getYMin()
        Returns Y data coordinate lower bound.
        Returns:
        y min
      • getYMax

        public double getYMax()
        Returns Y data coordinate upper bound.
        Returns:
        y max