|
FuncSketch
|
Definition of AxisTicks class. More...
#include <cstddef>#include <string>#include <utility>#include <vector>#include "func_sketch/common_types.h"Go to the source code of this file.
Classes | |
| struct | func_sketch::plotter::AxisTicks |
| Struct to represent ticks of axes. More... | |
Functions | |
| void | func_sketch::plotter::generate_axis_ticks (const std::pair< Real, Real > &range, std::size_t approx_num_ticks, AxisTicks &ticks) |
| Generate ticks of axes. | |
Definition of AxisTicks class.
Definition in file axis_ticks.h.
| void func_sketch::plotter::generate_axis_ticks | ( | const std::pair< Real, Real > & | range, |
| std::size_t | approx_num_ticks, | ||
| AxisTicks & | ticks ) |
Generate ticks of axes.
| [in] | range | Range of the axis. Pair of minimum and maximum values. |
| [in] | approx_num_ticks | Desired number of ticks. Approximately this number of ticks will be generated. |
| [out] | ticks | Ticks of the axis. |
Definition at line 32 of file axis_ticks.cpp.