Interface AnalyticSurface.GridPointAttributes

  • Enclosing class:
    AnalyticSurface

    public static interface AnalyticSurface.GridPointAttributes
    GridPointAttributes defines the properties associated with a single grid point of an AnalyticSurface.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.awt.Color getColor()
      Returns the Color associated with a grid point.
      double getValue()
      Returns the scalar value associated with a grid point.
    • Method Detail

      • getValue

        double getValue()
        Returns the scalar value associated with a grid point. By default, AnalyticSurface interprets this value as the grid point's height relative to the AnalyticSurface's base altitude, both in meters.
        Returns:
        the grid point's scalar value.
      • getColor

        java.awt.Color getColor()
        Returns the Color associated with a grid point. By default, AnalyticSurface interprets this Color as the RGBA components of a grid point's RGBA color.
        Returns:
        the grid point's RGB color components.