#include <vector>
#include <iostream>
#include <math.h>
Go to the source code of this file.
Classes | |
struct | bresenham3d_param_t |
Functions | |
void | get_bresenham3d_parameters (int p1x, int p1y, int p1z, int p2x, int p2y, int p2z, bresenham3d_param_t *params) |
void | get_current_point3d (bresenham3d_param_t *params, int *x, int *y, int *z) |
int | get_next_point3d (bresenham3d_param_t *params) |
void get_bresenham3d_parameters | ( | int | p1x, |
int | p1y, | ||
int | p1z, | ||
int | p2x, | ||
int | p2y, | ||
int | p2z, | ||
bresenham3d_param_t * | params | ||
) |
Definition at line 33 of file bresenham.cpp.
void get_current_point3d | ( | bresenham3d_param_t * | params, |
int * | x, | ||
int * | y, | ||
int * | z | ||
) |
Definition at line 90 of file bresenham.cpp.
int get_next_point3d | ( | bresenham3d_param_t * | params | ) |
Definition at line 97 of file bresenham.cpp.