Illustrative Line Visualization
Implementation of the method by Everts et al. for visualizing dense line data.
math.h
1 #ifndef MATH_H
2 #define MATH_H
3 
4 #include <cmath>
5 
6 namespace Math
7 {
8 
9  static const float PI = 3.14159265358979323846f;
10 
11 }
12 
13 #endif // MATH_H
Definition: math.h:6