Roguelike
 All Classes Namespaces Functions Variables Typedefs Friends Pages
bresenham.h
1 
20 #include <int_point.h>
21 #include <algorithm>
22 #include <math.h>
23 #include <math_helper.h>
24 #include <stdlib.h>
25 #include <vector>
26 
27 std::vector<IntPoint> bresenham_line(IntPoint&, IntPoint&);
28 std::vector<IntPoint> bresenham_circle(IntPoint&, int);
29 std::vector<IntPoint> bresenham_arc(IntPoint& start, int radius, IntPoint bounds);
Definition: int_point.h:26