libcvd
Public Member Functions | List of all members
CVD::Brezenham Class Reference

Class to implement the Bresenham line-drawing algorithm. More...

#include <brezenham.h>

Public Member Functions

 Brezenham (TooN::Vector< 2 > dir)
 Construct a line-drawing object. More...
 
ImageRef step ()
 Returns the next image co-ordinate along the line.
 

Detailed Description

Class to implement the Bresenham line-drawing algorithm.

This object does not draw directly into an image, it simply outputs the set of image co-ordinates that should be visited to draw a line in a certain direction. Pixels are generated in a 4-connected sense (i.e. there are no diagonal steps–each step is either horizontal or vertical) details of the algorithm. See also Brezenham8.

Constructor & Destructor Documentation

◆ Brezenham()

CVD::Brezenham::Brezenham ( TooN::Vector< 2 >  dir)

Construct a line-drawing object.

Parameters
dirThe (x,y) direction of the line

The documentation for this class was generated from the following files: