This chapter presents 8 different projects, each of which highlights a specific aspect of the topic 'Drawing with methods of the Paint class'. One project also introduces you to a fractal - a Hilbert curve:
Figure 23.3.5.0.1: Fractal - Hilbert curve
Source code snippet:
Public Sub dwgKurve_Draw() $iX = 0 $iY = 0 Inc Application.Busy FMain.Title = "HilbertCurve - N = " & $iOrder HilbertCurve($iOrder) Dec Application.Busy End