Antialiased Line Drawing
Site Map Feedback

Download:

Up Buttons Circles Curves Lines

To draw antialiased lines on the PixelBlock, mix in the CLineStencil class below and define the four abstract methods. Wu Antialiasing is used for lines that are not horizontal, vertical, or diagonal. You will see in the code comments how you have to choose between including clipping code or testing each pixel is inside the PixelBlock before setting it (code-size versus code speed). It is worth pointing out that the the antialiased line blending can look banded against a black background as shown in the image below. Against lighter backgrounds there is no banding.

class CLinePainter : public CPixelBlock, public CLineStencil {
  WORD GetWidth () const {return CPixelBlock::GetWidth ();}
  WORD GetHeight() const {return CPixelBlock::GetHeight();}
  DWORD* GetPointer(WORD x, WORD y) const {return CPixelBlock::GetPointer(x,y);}
  void   SetPixel(WORD x, WORD y, DWORD Colour) {CPixelBlock::SetPixel(x,y, Colour);}
  void BlendPixel(WORD x, WORD y, DWORD Colour, BYTE Transparency) {CPixelBlock::BlendPixel(x,y, Colour, Transparency);}
public:
  CLinePainter() {}
  virtual ~CLinePainter() {}
};
Wu Antialiased Line Drawing
You can mix in as many 'Stencils' as you like to provide all the primitives you need.

The Colours, Effects and Patterns sections have further extensions.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.