.. _program_listing_file_src_navtk_geospatial_ElevationInterpolator.hpp: Program Listing for File ElevationInterpolator.hpp ================================================== |exhale_lsh| :ref:`Return to documentation for file ` (``src/navtk/geospatial/ElevationInterpolator.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include namespace navtk { namespace geospatial { class ElevationInterpolator { public: ElevationInterpolator(double top_left, double top_right, double bottom_left, double bottom_right); double interpolate(std::pair fractions) const; private: double top_left; double top_right; double bottom_left; double bottom_right; }; } // namespace geospatial } // namespace navtk