construction of Peano curve on a square grid. More...
Go to the source code of this file.
Functions | |
vcl_vector< vgl_point_2d < double > > | rotate_2d (vcl_vector< vgl_point_2d< double > > in, double angle) |
vcl_vector< vgl_point_2d < double > > | trans_2d (vcl_vector< vgl_point_2d< double > > in, double tx, double ty) |
vcl_vector< vgl_point_2d < double > > | scale_2d (vcl_vector< vgl_point_2d< double > > in, double s) |
vcl_vector< vgl_point_2d < double > > | recurse_peano_curve (unsigned level) |
Peano curve inscribed in a square of length 4 centered at the origin. | |
vcl_vector< vgl_point_3d < double > > | peano_curve_on_cube (unsigned level) |
peano_curve on cube. |
construction of Peano curve on a square grid.
Definition in file bdgl_peano_curve.h.
vcl_vector<vgl_point_3d<double> > peano_curve_on_cube | ( | unsigned | level | ) |
peano_curve on cube.
Definition at line 111 of file bdgl_peano_curve.cxx.
vcl_vector<vgl_point_2d<double> > recurse_peano_curve | ( | unsigned | level | ) |
Peano curve inscribed in a square of length 4 centered at the origin.
Definition at line 79 of file bdgl_peano_curve.cxx.
vcl_vector<vgl_point_2d<double> > rotate_2d | ( | vcl_vector< vgl_point_2d< double > > | in, |
double | angle | ||
) |
Definition at line 8 of file bdgl_peano_curve.cxx.
vcl_vector<vgl_point_2d<double> > scale_2d | ( | vcl_vector< vgl_point_2d< double > > | in, |
double | s | ||
) |
Definition at line 35 of file bdgl_peano_curve.cxx.
vcl_vector<vgl_point_2d<double> > trans_2d | ( | vcl_vector< vgl_point_2d< double > > | in, |
double | tx, | ||
double | ty | ||
) |
Definition at line 21 of file bdgl_peano_curve.cxx.