cgv
Loading...
Searching...
No Matches
ticks.h
1#pragma once
2
3#include <tuple>
4#include <vector>
5
6#include "lib_begin.h"
7
8namespace cgv {
9namespace media {
10
11extern CGV_API std::tuple<int, int, int> get_tick_specification(float start, float stop, int count);
12
13extern CGV_API std::vector<float> compute_ticks(float start, float stop, int count);
14
15extern CGV_API std::vector<float> compute_ticks_log(float start, float stop, float base, int count);
16
17} // namespace media
18} // namespace cgv
19
20#include <cgv/config/lib_end.h>
this header is dependency free
Definition print.h:11