Difference between revisions of "Hilbert curve demo"

From Free Pascal wiki
Jump to navigationJump to search
m (Download link updated)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
== About ==
 
== About ==
The program below gives a demonstration of how Hilbert curves can be drawn. It also demonstrates how threads can be used to prevent the application from locking up while a drawing is constructed.
+
The program below gives a demonstration of how Hilbert curves [http://en.wikipedia.org/wiki/Hilbert_curve] can be drawn. It also demonstrates how threads can be used to prevent the application from locking up while a drawing is constructed.
 
The two screenshots below are from the program running on Windows XP and Ubuntu 10.10.
 
The two screenshots below are from the program running on Windows XP and Ubuntu 10.10.
  
Line 12: Line 12:
  
 
== Download ==
 
== Download ==
 +
The demo program can be downloaded from github [https://github.com/eny-fpc/HilbertCurve]
 +
 +
[[Category:Example programs]]
 +
[[Category:Chaos Theory]]

Latest revision as of 15:47, 30 December 2016

About

The program below gives a demonstration of how Hilbert curves [1] can be drawn. It also demonstrates how threads can be used to prevent the application from locking up while a drawing is constructed. The two screenshots below are from the program running on Windows XP and Ubuntu 10.10.

Hilbert Curve program running on Ubuntu 10.10.

Hc ub.png

Hilbert Curve program running on Windows XP.

hc winxp.png

Download

The demo program can be downloaded from github [2]