Thank you TRon and carl_caulkett for your encouraging words and the nice replies. I used to visit Delphi for Fun quite often (I believe Gary Darby sadly passed away recently), as well as Planet VB. Love all things "Graphics". Thanks Carl for the info on Moquette.
I was going to upload all my saved RegEx Fractal png's to a free download site for people to download freely.
I have been working on trying to convert a C++ RegEx Version to CSharp (mentioned here), as that C++ produces some nice Gradient RegEx patterns but have gotten stumped. I have got it to save to png file but it is not parsing the RegEx string correctly, so I just get a blank black image. I wanted to later on convert the CSharp version to Lazarus.
I wonder if anyone is knowledgeable in CSharp/C++ to get the CSharp version working. There was a reply by someone called nya. Not sure if they are also a member of the Lazarus Forum?
Also Had a go a trying to convert the Java version of
"Creating pretty images from regular expressions using edit distance" made by ssodelta with source code here:
https://github.com/SSODelta/GradientRegexImagesand tested with these sample RegEx strings:
1*2*0
.?2*1.3
(0+1)*23
3*1?2?0*
1*2?(3+0)+
(12|0*)12*
(0+1)*2?3
It:
Computes the hamming distance between two strings of equal length
Computes the hammer distance between some string k, and the set of matches.
Generates all possible strings of given length using characters '0', '1', '2', '3' for a given string length
The depth = 9 so makes the height and width of the image = 2^9 = 512 pixels.
Matches each of these strings against the regex to produce a gradient fractal.
Not having much luck at present getting
an actual gradient fractal pattern being rendered.
I somehow feel the RegEx strings are not being passed properly ? Maybe I am also missing something else ?
Oh well, I gave it a shot.