Oxygen Basic

Information => Open Forum => Topic started by: RobbeK on December 12, 2014, 11:51:41 AM

Title: The buddhabrot (challenging ?)
Post by: RobbeK on December 12, 2014, 11:51:41 AM
Hi folks,

been very busy for a while ( beyond enjoyable to be exact ).

Someone interested to try coding this ?

http://www.vb-helper.com/howto_buddhabrot.html   (for VB)
http://erleuchtet.org/2010/07/ridiculously-large-buddhabrot.html  (for Common Lisp)

(i'll try to build something from scratch )

In the mean time all my Common Lisps can allocate contineous memory and address it , the (pitch) pointers adjusted to all the CL types -- a big plus for buffered graphics.  (all this after some sweat, blood and tears -- I really should have learned C when young ).

Also interesting :   
http://dev.ronware.org/p/reva/home
https://aaron-tech.com/8th.html

best, Rob


Title: Re: The buddhabrot (challenging ?)
Post by: Aurel on December 12, 2014, 12:26:27 PM
Hi Rob
do you can explain how i can download this thing called 8th
on 8th home page there is no link for download?
is this stuff free or comercial ..
thanks!
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on December 12, 2014, 12:26:57 PM
Hi Rob,

Long time no see. :)

The VB script is suitable for use in FBSL literally with just one correction which is to replace the CInt() function with a % (i.e. to-integer) cast.
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 12, 2014, 12:44:13 PM
Hi Mike,

8th : https://aaron-tech.com/contact.html?lang=en   --  for becoming a tester -- (I only had a quick look at Reva, which seems interesting )

and also quickly read Wikipedia about the Buddhabrot -- I think, (I hope) that in this case the image generation can be memoized, -- unlike the Mandelbrot , this stuff is based on random situations, there is no exact Buddhabrot (i think) it depends on the level of iterations (it is based not on the attractors, but on the non-attractors) , so even when the memoizing is wrong (as I did with the Mandelbrot ) the generated images will be any exact as any others  8)
By memoizing, it may speed up things 100x - 1000x   (we'll see)

best, Rob
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on December 12, 2014, 01:06:38 PM
Rob,

Can you please edit your previous message in such a way that the other poster could understand that the 8th: line with the link refers to his question rather than mine? Thank you.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on December 12, 2014, 01:44:42 PM
On the subject matter, I think we won't be able to have an efficient Buddhabrot painting algo either way, VB or Common LISP, memoizing or no memoizing.

Below please find a snapshot of Buddhabrot drawn by running nVidia's CUDA program for some fifteen seconds on my PC. Note the mere 16.5 FPS rate with 20K drawing threads running in parallel directly on the GPU!

Attached are also the program's binaries. Please note however that you'll be able to run the program only if you have a modern CUDA-capable nVidia graphics card and latest video drivers to match. :)

.
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 13, 2014, 09:05:32 AM
Hi Mike,

Wpw, that's an enviable piece of hardware --  I'm miles away from such things  (mm lightyears could be exacter) .. but I'm trying something for the moment , memoizing is possible, be it with a serious math error (which in the case of the buddha may be interesting )  - kind of working with half half-floats qua precision.  (because the resolution is cut on the size of a pixel in a grid).

(in Scheme compiled with the "brutal" STALIN compiler it works extremely fast , sadly I could not connect this Scheme with C style memory allocation and pointers -- the graphics are not buffered and I lose around 90% of processing time on plotting single pixels (for a low level of iterations below 1000).

As an illustration, one of the problems of allocating memory within the Lisp image  (it's weird) :

things work both in interpreted and compiled mode , however the moment you make a standalone application (for an alien computer) Lisp saves its complete image and then if running the program and if the memory allocation is pointed by a variable that is declared global   (like    (defvar x (mem-alloc ... ))  CL or (define x (mem-alloc ...)) Scheme ) the system answers :      "system halted - attempt to assign data from a previous session "   :-\
however with the local declarations   (let or the nested (let*     CL/Scheme and the recursive (letrec    (Scheme) everything is OK and the standalone runs perfectly.

I'll send an Email to 8th, and if I get an answer , I will repost it.

best, Rob
     


 
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on December 13, 2014, 11:31:18 AM
Rob,


1. Thanks for the update on what you're planning to do. I'm eager to see the results. :)



2.
Quote from: Rob
Hi Mike,
8th : https://aaron-tech.com/contact.html?lang=en
Quote
I'll send an Email to 8th, and if I get an answer , I will repost it.

Please do not address this information to me any more. I am not interested in it nor am I affiliated in any way with that other entity that asked for it -- please see the attached snapshot and act accordingly.

Thanks in advance!

.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on December 13, 2014, 12:35:28 PM
Lets hope the North Koreans don't get their hands on Aurel. Can you imagine what it would be like if he was being paid to act like this?
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 13, 2014, 01:57:23 PM
My deepest excuses , Mike ...     must have been a case of severe ...   (c attached)


Дислексия   :(




.
Title: Re: The buddhabrot (challenging ?)
Post by: Aurel on December 13, 2014, 02:58:10 PM
so now is forbidden to ask  ???
maybe is something wrong with my OPERA browser .. :o
Title: Re: The buddhabrot (challenging ?)
Post by: Aurel on December 13, 2014, 03:13:58 PM
NO is NOT... >:(


.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on December 13, 2014, 03:30:21 PM
Seriously, you need to seek professional mental health assistance. Do you have any friends?

I'm FREE of Aurel. (on this forum at least) I have added Aurel to my Ignore List. This is done from your profile settings. (last menu option - Buddy/Ignore List) Be careful you don't add him to your Buddy list. That's a nightmare just thinking about it.  :o

.
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 14, 2014, 08:32:01 AM
Not the Buddha, but the Thorn -- benchmarking some CL's

From 240 sec. in CLisp (bytecode) to around a sec in Steel Bank Common Lisp together with the CFF interface (for graphics)
(I also tried the on board sb-alien package but this is very much slower )

the ranking is slow->fast  CLisp ,     big gap ,        GCL (aka Austin Kyoto CL) (C) , Clozure CL (native) , Steel Bank CL .. (native)

best Rob
(the SBCL win port is experimental as one can read    -- c attachemt)
(Mike's JavaKiller included when using the batch file)
... much more calc. than doing a Mandelbrot (and on top goniometric formulae)   





.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on December 14, 2014, 10:58:56 AM
Slow seems to be the keyword in your message. Using a socket connection between your code and GUI is got to hurt.

@Rob - You need to wean yourself off the JAPI / Java direction. IMHO
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 14, 2014, 11:34:27 AM
Hi John,

" You need to wean yourself off the JAPI / Java direction. IMHO"  - yes I agree ...  (i even think Java reached a certain degree of ridicoulesness at this moment , and from a math./logical viewpoint the OO-java concept is almost discutable) ; but the alternatives ?   what to do ; japi is very simple -- i've been looking at IUP , GL , Ltk and other (quick)Lisp packages --  it's not all sunshine either ( i really don't know   -- OpenJava running under *nix is a disaster (it seems far from stable)).

Recapitulating :   i don't know  ::)     
(and I certainly do not like the Racket / LPT Scheme way turning (about graphics) points, colours and other primitives into objects - besides a loss of processing/coding time  it seems someone is building a system for the sole reason of having a system (ok it is used for teaching, but nevertheless it starts to look like that MS Small Basic that while it likes to give a clever impression, it is completely retarded, almost an insult ).

(except the slow starting up time (typical Java) the Japi GUI is rather fast imo )

but yes , I 100% agree  --  ;)

what do you think about Ltk ?   (the main problem (my viewpoint) is , can you ask someone    "you can run my code if you install this and that .. from Java you can reasonably expect it's on almost any computer "

best Rob   
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on December 14, 2014, 12:30:05 PM
Continue on with your migration to SDL(_gfx). I think Charles has SDL examples in the O2 build. SB (BASM soon) supports SDL_gfx as well. Before taking the leap, I would ask Mike what he recommends for a graphics direction.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on December 14, 2014, 08:56:03 PM
I'm not sure if I understand the question.

I think Rob is trying to use one of the existing GUI implementations available for the LISP dialects that are solid enough to provide him with the language functionality he needs for his applications. If there are no ready made LISP-to-SDL interface implementations suitable for his needs, then how is he supposed to migrate to SDL? Rob doesn't seem to be a language developer. He looks more like a LISP programmer to me. :)
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on December 14, 2014, 09:05:26 PM
I think the TinyScheme and SDL_gfx extension modules in Script BASIC might be worth a try. The big question is can Rob adapt to TinyScheme?

Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on December 14, 2014, 10:36:01 PM
Yeah, LISP is not Scheme. It's like Python and BASIC; conceptually similar but annoyingly different in minute details for a non-committed user.
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 15, 2014, 02:48:26 AM
Hi,

Yes, Common Lisp is not Scheme and somehow you have to make a choice -- my love goes to CL (while Scheme remains very interesting ).
Scheme seems more puristic imho but taking Racket for example when one of the basic Scheme concepts was (among them) that iteration is something that always can be expressed as a recursive construction, suddenly they come with a heap of mechanisms    for     for/list    for/product    for/sum    for/array   for/vector   for/bit-vector and the nested for*/xxxxx   family -- it is not pure iteration yet because it works as  :      (for ((i L)) ...   ) where L is list (p.e.     (for ((i '( 1 2 3)) --  but this is identical with the CL    (dolist (i L)   ...   )  ,   then the index is fabricated as (range 1 10)      (for ((i (range 1 10)))  ...   index 0..9   looks like iteration but in fact isn't  .. then came the big step    (in-range x y) , now the list is gone, it's a stream (and imho we can call this iteration now and we can expand it into the infinite   (in-naturals)  , this works now because being a stream and intercepted the lazy way.  So I think there is an evolution into iterative contructions in some Schemes.

But this is not the only reason :  in CL , when one defines :

(defun double (x) (+ x x))    (p.e.     (double 2/3) ->  4/3

just like in a full numeric tower Scheme this works for fixnumbers , bignumbers , fractions , floats and complex numbers. It is understandable that such code will be slower than something as written in C.   However CL can speed things up !!

(defun double (x)
  (declare (fixnum x))
   (+ x x))

(don't know how to do it in Scheme, except in Bigloo and that Racket has a switch called "typed Racket" )  , also lists when big are extremely slow to address (it's a connection of pointers) so when giving up the variadic nature in working with vectors , arrays etc... things will speed up remarkable.

http://www.iaeng.org/IJCS/issues_v32/issue_4/IJCS_32_4_19.pdf

However (and rather logical imho) , if your lisp code is tuned to reach the speed of C , it starts looking as C and some things lisp is famous for, vanishes.
STALIN is fast, very fast , but imho it is a strpped down Scheme version (no complex numbers , no fractions (a slow thing) etc..)

So probably i will stay a CL devotee for ever  8)   not meaning I don't like it very much to code in Scheme, Forth , Basic etc ... 

OK, I'll have a look on the SDL packages available for CL.

Working on a fractal now representing a ships graveyard  8)

(written in Clozure Common Lisp :   -- these are the only lines of code needed to do the maths.

(defun the-ship (i x y cx cy maxit orb)
   (if (or (= i maxit) (> orb 3)) i
      (the-ship (1+ i) (- (* x x) (* y y) cx) (- (abs (* 2 x y)) cy) cx cy maxit (abs (* x y)))))

 :)   easy as sunday morning

best Rob   (image is just a start, checking the formula works , the artistic side comes later , but will be completely CAD )

.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on December 15, 2014, 02:56:26 AM
Quote
Working on a fractal now representing a ships graveyard.
(see attached - assuming SDL)

You forgot to Photoshop out the Java/JAPI icon in the upper left corner.  ;D
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 15, 2014, 03:12:51 AM
Hi John,

No sdl yet, (started the code yesterday )

but

http://cl-sdl.sourceforge.net/screenshots/index.html

let's c there something for windows ...
lispbuilder-sdl  ?    ; https://www.youtube.com/watch?v=XLkUI89fgRI

best Rob
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on December 15, 2014, 03:21:13 AM
Quote from: Rob
but

Now you're talking. NICE!

While you're playing around with that, could you make a list of SDL calls (make-alien sdl::event) for example. TinyScheme allow embedding similar API calls into the language.
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 15, 2014, 03:55:24 AM
I'll be damned,

working right out of the box   (under Win32 available for CLISP and the Steel Bank )

thanks John,  is there a good SDL tutorial somewhere you know about ??


best Rob

.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on December 15, 2014, 10:51:19 AM
Quote
working right out of the box

Is it faster than JAPI?

Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 15, 2014, 12:01:45 PM
Hi John,

It has blitting , so it should be as fast as the JAVA's  "drawimagesource"  (which uses 3 x int32 / pixel !!! ).
SDL_GFX and SDL_TTF is working too for the moment.
Now some widgets (a button should be easy, but a textbox? ), in CL most  widget packages are written using CLX  (which is strictly Linux)  , I once got Cocotron in action , but I need a very lightweight thing.  I can write these myself , but another idea may be running scripts within the Lisp. 
(Ltk works fine, but how many have tcl/tk installed on a windows system ? )

best Rob
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on December 15, 2014, 12:20:31 PM
Would changing the name of Script BASIC to something else get you to try it?  :)

The SB direction offers the following.

Let me know if you find something comparable.
Title: Re: The buddhabrot (challenging ?)
Post by: Charles Pegge on December 16, 2014, 02:02:18 PM
The Buddha of recursive algorithms ;D

(http://www.subblue.com/assets/0000/4629/inverse6_large.jpg)

http://www.subblue.com/projects/mandelbulb
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on December 17, 2014, 12:53:19 AM
I was able to get the IUP.h converted to a IUP.inc file for BASM. Next on the agenda is SDL_gfx.
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 17, 2014, 07:37:52 AM
Hi,

Nice images , Charles --  you have a 3D printer ???

John, well, I'll try SB  ;)  need something to write some "glue code" anyway  -- if I can set up a process pipe with Lisp, things would be a lot easier here.
SDL, well,   the blitting seems slow (both in system and hardware memory - but the package seems great for games etc...  ) , I've installed it and will use it if suitable.
As for the widgets, (I don't need much), I think I'll write something myself (for CL none of the GUI builders works under Win  -- CLIM, McCLIM , and a heap of others are based on Linux ) remaining Java , GTK , Tk  ...  (and Windows itself , I'll try this - but I don't know anything about it )

to compare (attached) I translated one of the Oxygen samples (using SDL) into CL / Japi --  Clozure Common Lisp.
(the only thing changed in the O² was setting the fps at maximum -  for the lisp code I added varying size simulating star twinkeling  8)

-- considering the fact that I think Clozure CL runs (at best) at half speed of oxygen, the graphics are not bad ....
best Rob


     

.
Title: The SB Challenge
Post by: JRS on December 17, 2014, 09:34:28 AM
Quote
John, well, I'll try SB  ;)  need something to write some "glue code" anyway  -- if I can set up a process pipe with Lisp, things would be a lot easier here.

TinyScheme is an extension module for Script BASIC. All output from TS is returned to SB in a string. Very BASIC interface. SB has excellent dynamic string/array processing abilities to extract the info you need to feed SDL_gfx and IUP.

Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 17, 2014, 12:33:17 PM
Hi John,

Strings is what i need and even CL should be able to intercept the stdout from a parallel running process, let's see I'm able.
Anyway a scripting language should be the best ,   one has to control them all, i think it's better with a script.

As for the stars, it always can better -- tuned it a little in the way the more far away objects are displayed smaller.  Because of the variadic nature changing the code takes no time.
This time written in the (underestimated) Austin Kyoto CL.  They call it GNU CL nowadays, but  ... 

 (wikipedia) KCL is notable in that it was implemented from scratch, outside of the standard committee, solely on the basis of the specification. It was one of the first Common Lisp implementations ever, and exposed a number of holes and mistakes in the specification that had gone unnoticed.

I think the late Mr Schelter spend the rest of his life correcting it.  , from there Austin Kyoto.

Japi on board/incorporated as a static lib here, poor FFI (I think, or lack of documentation)    ...  Tk only works under Linux , Japi does not under this OS.
(mm, still on line : https://www.ma.utexas.edu/users/wfs/ )

example attached -- Japi incorporated , compacter code than calling FF's.

best, Rob
(typeless code , declarations could speed it up a little more)

oops, yes : to abort the running code - hit    "start/break" first - the windowlistener is outside the calculation loop.
 

.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on December 17, 2014, 12:52:35 PM
I will be happy to assist you in integrating a CL with SB. I have no interest in creating another LISP/SCHEME ext. module for SB.

Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 18, 2014, 02:17:18 PM
Thanks Johh,

I'll start studying it this weekend (but it comes with a lot of documentation  :) )-- does  SB have Timer Events (i will need several tasks running at the same time)

best Rob
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on December 30, 2014, 05:28:57 AM
Started to study these images based on orbit traps , they include a lot more calculations than the classic fractal calculations.

I do think more interesting possibilities give orbit traps on Möbius Transformations  (next to do).

Wrote something in Scheme (Bigloo , but to gain speed - not typeless nor variadic numeric operator modes )

Attached -- used OrbitTrap z=(0,0) (just the origin)  -- you may tune the intensity of the colours by changing the value on the right.  The green/yellow point generated are the end points of the orbits , the red points a colour generated by the lowest value of their distance to the trap (in this case it is just abs(z) where z is complex  sqrt(x²+y²) for real numbers -- i skipped the sqrt for speed ....

best Rob

Bigloo (from their site )                           Bigloo is a Scheme implementation devoted to one goal: enabling Scheme based programming style where C(++) is usually required. Bigloo attempts to make Scheme practical by offering features usually presented by traditional programming languages but not offered by Scheme and functional programming. Bigloo compiles Scheme modules. It delivers small and fast stand alone binary executables. Bigloo enables full connections between Scheme and C programs, between Scheme and Java programs, and between Scheme and C# programs.

.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 01, 2015, 05:49:46 PM
Thanks Rob,

Your fractal looks very nice.

You can also get a really nice looking Buddhabrot in less than 7 seconds using FBSL's BASIC+some DynC. If you're interested in the source code, you can find it here (http://www.fbsl.net/phpbb2/viewtopic.php?f=33&t=3058). A precompiled exe is attached below.

I'm perfectly sure the same can be written in pure Oxygen if only with a little more effort spent on creating the main window and maintaining it responsive in the tight calc loop. But I'm a little tired right now to accept the challenge. :)

.
Title: Re: The buddhabrot (challenging ?)
Post by: Aurel on January 01, 2015, 06:22:22 PM
In FBSL buhabrot (oups..budhabrot)  ;D  is created very fast... ;)
infact it is created in cca 12 seconds but what computer do in other cca 30 seconds i
don't know.. ::)

.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 01, 2015, 06:43:07 PM
It augments the picture by adding more pixels and adjusting their relative brightness. If your computer is too slow by modern standards, which it undoubtedly is, you may prefer to reduce

Dim stop_after = 2500000, draw_every = 50000

to

Dim stop_after = 300000, draw_every = 10000

You'll get a much faster but also much cruder image of the same fractal:

.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 01, 2015, 09:28:34 PM
Thanks Johh,

I'll start studying it this weekend (but it comes with a lot of documentation  :) )-- does  SB have Timer Events (i will need several tasks running at the same time)

best Rob

I think our goals are too far apart for what you're looking for. All I was after was a TinyScheme set of functions that SB would call and take the output to SDL_gfx. If you need much more that that, I would look elsewhere.

Thanks for the response and interest.

Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 02, 2015, 03:22:46 AM
Both ScriptBASIC and TinyScheme are capable of multi-threading, which means you can run several threads in/of each of them at the same time, either co-operatively or independently. This will however be reasonable only if your CPU can benefit from this technique, i.e. if it has a multi-core architecture. Trying to run a multi-threaded app on a single core CPU can actually be detrimental to the app speed as compared to a single-threaded implementation of the same.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 02, 2015, 10:28:23 AM
Hi Mike,

Quote
Both ScriptBASIC and TinyScheme are capable of multi-threading

You can easily run SB in multi-threaded mode with a common variables (MT) using Charles's DLLC extension module. I would have liked to see what I mentioned above accomplished first before cloning it to multiple threads.
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on January 03, 2015, 01:58:21 PM
Thanks for all this info  , John & Mike :)

As for the Buddhabrot, made something that does NOT use the orbittraps , just the endvalues of the orbits.
Written in FreeBasic this time , somewhat care was needed to remove the NaNs, INF's etc ...  (the values of the orbits quickly go into over- and underflow values).
Animated, code shows 94 sequential frames.

best, Rob
(need some better colours, but it's already something ..)   -- this would be nicer in 3D though (imho)

.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 03, 2015, 03:28:45 PM
Thanks Rob for the example. My first attempt will be to convert your FreeBASIC code to SB using JAPI for the GUI. If all goes well I'll substitute JAPI for SDL_gfx.

Here is an old SB/JAPI example to show you that I already have a running start.

Code: Script BASIC
  1. rem Example mandel.bas
  2.  
  3. import japi.bas
  4.  
  5. xstart = -1.8
  6. xend   =  0.8
  7. ystart = -1.0
  8. yend   =  1.0
  9.  
  10. hoehe  = 240
  11. breite = 320
  12.  
  13. if(j_start() = J_FALSE) then
  14.     print("Fehler beim Starten")
  15.     end
  16. endif
  17.  
  18. jframe  = j_frame("")
  19. menubar = j_menubar(jframe)
  20. jfile    = j_menu(menubar,"File")
  21. calc    = j_menu(menubar,"Calc")
  22. quit    = j_menuitem(jfile,"Quit")
  23. start   = j_menuitem(calc,"Start")
  24. jstop    = j_menuitem(calc,"Stop")
  25.  
  26. canvas  = j_canvas(jframe,breite,hoehe)
  27. j_setpos(canvas,10,60)
  28. j_pack(jframe)
  29. j_show(jframe)
  30.  
  31. obj = 0
  32. do_work = 0
  33.  
  34. while((obj <> jframe) and (obj <> quit))
  35.  
  36.     if(do_work = 1) then
  37.         obj = j_getaction()
  38.     else
  39.         obj = j_nextaction()
  40.     endif      
  41.  
  42.     if(obj = start) then
  43.         x = -1
  44.         y = -1
  45.         do_work = 1
  46.     endif
  47.  
  48.     if(obj = jstop) then
  49.         do_work = 0
  50.     endif
  51.    
  52.     if(do_work = 1) then
  53.         x = (x+1) % breite
  54.        if(x = 0) then
  55.             y = (y+1) % hoehe
  56.        endif
  57.        if((x = breite-1) and (y = hoehe-1)) then
  58.             do_work = 0
  59.         else
  60.             zre = xstart + x*(xend-xstart)/breite
  61.             zim = ystart + y*(yend-ystart)/hoehe
  62.             it = mandel(zre,zim,512)
  63.             j_setcolor(canvas,it*11,it*13,it*17)
  64.             j_drawpixel(canvas,x,y)
  65.         endif
  66.     endif
  67.  
  68. wend
  69.  
  70. j_quit()
  71.  
  72.  
  73. function mandel(zre,zim,maxiter)
  74.     mx = 0.0
  75.     my = 0.0
  76.     iter=0
  77.     betrag=0.0
  78.  
  79.     while ((iter < maxiter) and (betrag < 4.0))
  80.         iter = iter+1
  81.         tmp = mx*mx-my*my+zre
  82.         my = 2*mx*my+zim
  83.         mx = tmp
  84.         betrag = (mx*mx + my*my)
  85.     wend
  86.     mandel=iter
  87. end function
  88.  

FYI I don't think the SB JAPI interface has the same release / expanding memory issue. (at least under Linux) In the process monitor the Mandelbrot is running in one core and there is no distinguishable memory creep or retention. Java JRE remains in memory as a process but that gets loaded at boot time I believe.


.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 03, 2015, 07:33:50 PM
Dear Rob,

Your fractal is beautiful and your coloration attempt is not really that bad. I enjoyed it to the extent of porting it to FBSL to see it at a much better speed and without memory access violations which FreeBASIC cannot sense while FBSL can.

First, a few observations as to your FB code:

In my humble opinion, you should abandon these Java exercises and concentrate on a decent language that would provide you with sufficient speed, easy GUI functionality, and direct memory access on an all-in-one basis, such as FBSL or OxygenBasic.

Here is your code re-written in a tiny FBSL BASIC GUI+DynC calc script that runs 12 times faster than your FB+Java original. On my PC, your 94-frame sequence runs 24 seconds while my FBSL equivalent requires only about 2. The corresponding precompiled executable is attached below for your enjoyment.

Code: OxygenBasic
  1. #Option Strict
  2. #Include <Include\Windows.inc>
  3.  
  4. Type BMPBLOB Align 2 // fake BITMAPINFOHEADER
  5.   %biSize
  6.   %biWidth
  7.   %biHeight
  8.   %biPlanes * 16
  9.   %biBitCount * 16
  10.   $biUnused * 24
  11. End Type
  12.  
  13. Type FRACTAL
  14.   !!x
  15.   !!y
  16.   !!rc
  17.   !!ic
  18. End Type
  19.  
  20. Dim sz = 800
  21. Dim matrix[sz * sz] As FRACTAL
  22. Dim %rd[sz * sz], %gr[sz * sz], %bl[sz * sz]
  23.  
  24. Dim bb As BMPBLOB
  25. With bb
  26.   .biSize = LenB(BMPBLOB)
  27.   .biWidth = sz
  28.   .biHeight = sz
  29.   .biPlanes = 1
  30.   .biBitCount = 32
  31. End With
  32.  
  33. Dim button = FbslControl("button", ME, "Run", 1001, 400, 833, 100, 24, WS_CHILD BOr WS_VISIBLE, 0)
  34. Dim canvas = FbslControl("SysAnimate32", ME, "", 1002, 50, 20, sz, sz, WS_CHILD BOr WS_VISIBLE BOr WS_BORDER)
  35.  
  36. StyleRemove(ME, WS_MAXIMIZEBOX BOr WS_MINIMIZEBOX BOr WS_THICKFRAME)
  37. FbslSetText(ME, "Click 'Run' to start...")
  38. Resize(ME, 0, 0, 900, 900): Center(ME)
  39.  
  40. Dim %pixels, hBmp = CreateDIBSection(NULL, @bb, 0, @pixels, NULL, 0)
  41. Dim hDC = GetDC(canvas), memDC = CreateCompatibleDC(NULL)
  42. Dim hOldBmp = SelectObject(memDC, hBmp)
  43.  
  44. Show(ME)
  45. DoEvents
  46.  
  47. init_matrix()
  48.  
  49. Begin Events
  50.   If CBMSG = WM_COMMAND Then
  51.     If CBLPARAM = button Then
  52.       DrawBrot()
  53.       Return 0
  54.     End If
  55.   ElseIf CBMSG = WM_PAINT Then
  56.     BitBlt(hDC, 0, 0, sz, sz, memDC, 0, 0, SRCCOPY)
  57.   ElseIf CBMSG = WM_CLOSE Then
  58.     DeleteObject(SelectObject(memDC, hOldBmp))
  59.     DeleteDC(memDC)
  60.     ReleaseDC(canvas, hDC)
  61.   ElseIf CBMSG = WM_DESTROY Then
  62.     ExitProcess(0)
  63.   End If
  64. End Events
  65.  
  66. Sub DrawBrot()
  67.   RtlZeroMemory(@gr[0], LenB(gr)) // clear green array
  68.  
  69.   Dim start_time = GetTickCount()
  70.   For Dim k = 1 To 94
  71.     update_matrix(@matrix[0], sz)
  72.     SelectObject(memDC, hOldBmp)
  73.     plot_matrix(@matrix[0], @rd[0], @gr[0], @bl[0], pixels, sz)
  74.     SelectObject(memDC, hBmp)
  75.     BitBlt(hDC, 0, 0, sz, sz, memDC, 0, 0, SRCCOPY)
  76.     FbslSetText(ME, (GetTickCount() - start_time) / 1000 & " sec, frame " & k & "/94")
  77.     DoEvents
  78.   Next
  79. End Sub
  80.  
  81. Sub init_matrix()
  82.   Dim ix, y, x = -2.0, dz = 3 / 800
  83.  
  84.   For Dim i = 0 To sz - 1
  85.     x = x + dz: y = -1.5
  86.     For Dim j = 0 To sz - 1
  87.       y = y + dz: ix = i + j * sz
  88.       With matrix[ix]
  89.         Let(.x, .rc) = x
  90.         Let(.y, .ic) = y
  91.       End With
  92.     Next
  93.   Next
  94. End Sub
  95.  
  96. DynC update_matrix(%mtx_ptr, %sz)
  97.   typedef struct {
  98.     double x, y, rc, ic;
  99.   } FRACTAL, *LPFRACTAL;
  100.  
  101.   void main(FRACTAL matrix[], int sz)
  102.   {
  103.     int i;
  104.     double p;
  105.     LPFRACTAL f;
  106.    
  107.     for (i = 0; i < sz * sz; i++) {
  108.       f = &matrix[i];
  109.       p = f->x;
  110.       f->x = p * p - f->y * f->y + f->rc;
  111.       f->y = 2 * p * f->y + f->ic;
  112.     }
  113.   }
  114. End DynC
  115.  
  116. DynC plot_matrix(%mtx_ptr, %r_ptr, %g_ptr, %b_ptr, %pxs_ptr, %sz)
  117.   typedef struct {
  118.     double x, y, rc, ic;
  119.   } FRACTAL, *LPFRACTAL;
  120.  
  121.   void main(FRACTAL matrix[], int rd[], int gr[], int bl[], int* pixels, int sz)
  122.   {
  123.     int i, px, py, pxy;
  124.     double p, q;
  125.     LPFRACTAL f;
  126.    
  127.     for (i = 0; i < sz * sz; i++) {
  128.       f = &matrix[i];
  129.       p = f->y;
  130.       q = f->x;
  131.       if (p > 1000.0 || p < -1000.0 || q > 1000.0 || q < -1000.0) {
  132.         memset(f, 0, sizeof(FRACTAL));
  133.       }
  134.      
  135.       if (p > -2.0) {
  136.         if (p < 1.0) {
  137.           if (q < 1.5 && q > -1.5) {
  138.             px = 266 * (p + 1.5);
  139.             py = 266 * (q + 2.0);
  140.             pxy = px + sz * py;
  141.             if (pxy < 640000) {
  142.               rd[pxy] += 3;
  143.               gr[pxy] += 3;
  144.               bl[pxy] += 1;
  145.             }
  146.           }
  147.         }
  148.       }
  149.     }
  150.    
  151.     for (px = sz - 1; px >= 0; px--) {
  152.       for (py = 0; py < sz; py++) {
  153.         pxy = px * sz + py;
  154.         *pixels++ = bl[pxy] | (gr[pxy] << 8) | (rd[pxy] << 16);
  155.       }
  156.     }
  157.   }
  158. End DynC

The most beautiful coloration is achieved if the initial sequence is interrupted with another click on the Run button. Enjoy this smiling Buddha I was lucky to capture; note also the small skull right in the middle of his fat divine belly:  :)


.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 03, 2015, 07:56:17 PM
Sweet Mike!

I was about a 1/2 hour out to finishing the SB conversion of Rob FB example but I think I'm going to use your code and SDL_gfx instead.

I love to watch code getting makeovers as it's passed around the forum table.  8)

(http://media.boingboing.net/wp-content/uploads/2015/01/tumblr_mwvx0iGpIe1qb3erro1_500.gif)
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 03, 2015, 09:36:43 PM
Nice animation, John! :)

Here comes another Buddha hypostasis, this time an irate one. I can also clearly see a wolf's muzzle with open chops on Buddha's belly. When displayed in its full resolution, I can even see its narrowed eyes and fangs in its mouth. But perhaps my imagination is just a bit too wild. :)

By the way, the fractal's layout and coloration seem to be perfectly symmetrical about its central vertical axis. This enables us to cheat by calc'ing only one half of it and mirroring it simply onto the other side in the trailing nested for() loop of DynC plot_matrix() only. This can effectively double the existing drawing speed. 8)

.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 03, 2015, 11:22:45 PM
Here is a reference to help you extend life to buddhabrot.



.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 04, 2015, 06:26:54 AM
Hehe, I have strong doubts as to whether vibrio cholerae can really extend life to anybody or anything.

On the other hand, Buddha is above the top of the tree of Life with about a dozen stages of enlightment separating Him from ordinary mortals. I'd venture to say, we're evolutionally much closer to those protozoa above than to Him.

And no, I am an Orthodox Christian. :)
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on January 04, 2015, 07:35:42 AM
Hi, thanks again ..  John , Mike , all ..

Oops, I made a serious error then (@ Mike)  -- poking outside arrays is lethal (or should be).
For the moment I can not prove (how simple as it may sound) that p.e. orbits may come closer and then vanish to infinity.

More important, your compare is drifting me to abandon Japi.  It was handy because it comes with GCL , Stalin Sheme , Bigloo and easy to adapt in other applications. 
I do not want to give up Lisp , but packages for Windows are hardly stable -- timer events often missing because not adapted from Linux.

Maybe the better idea is using something as tB , FBSL , SB setting up a pipe to NewLISP and use Oxygen for the time critical piecas in the code.  This means giving up the heavy weight Common Lisps (and also Racket Scheme ).

The idea of using GFA may be a good idea , I can use NewLISP with it , Oxygen DLL's within it , it accepts inline assembler , I have OpenGL , glu , glut already worked out for it and I can inject the newer XP style in the executables or distribute it together with a manifest file doing the same. 
Maybe I'll do this ...   as an experiment tried same program (working with a bitmap now)

what'd you think ??

any advice appreciated -- 

best Rob (in the prog you can change the iteration level)

.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 04, 2015, 11:15:57 PM
Rob,

I was able to get the GFA/OCX example to run in Wine. Seems to generate the image quickly.



.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 04, 2015, 11:54:29 PM
Here is the VB6 version of this. I attached the compiled .exe if you want to give it a try yourself.


.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 05, 2015, 02:46:31 AM
Yes John,

That's the algo I used for my initial FBSL orbit trap example in BB.zip on the preceding page in this thread.

With the only exception that when set to use a 500*500 px canvas, run 2 500 000 iterations and draw a frame every 50 000 iterations (you can set these options on the main form), VB6 compiled to native code would take 42 seconds to complete the task on my PC while FBSL would take only 7.

No big deal.

:)
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 05, 2015, 04:37:28 AM
This one (http://www.oxygenbasic.org/forum/index.php?action=dlattach;topic=1258.0;attach=3714;image) is still my favorite that you did.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 05, 2015, 07:52:49 AM
For that one, all the glory goes to Rob. I gather it's based off of a completely original algo hitherto unbeknownst to Man. :D
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on January 12, 2015, 05:00:25 AM
The thing in 3D and a question :

On a Linux computer for the moment , why -- under Wine -- applications (as attached)   , gray-out after a certain number of seconds when running in a loop ?  (almost an indication the app should be hanging ) ..  John ? u probably have experience with this ?

best, Rob

written in GFA (openGL seems working well )
ah, you have to push "start" first at least one time ...

use the ...thingsDV.exe (it uses a timer , and calls lists (a lot better)

.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 12, 2015, 02:17:11 PM
Hi Rob,

Your 3D animation with a timer looks nice. :)

Yet ...things3DV.exe also has a bomb in it, which is its OpenGL test/STOP button. People, do not press it! It freezes my computer to total unresposiveness and the only way out is a cold reboot!

In a GUI applucation, Windows must have its own time slot to process window(s) messages in the respective callback(s). Every Windows version has a fixed period (XP, the longest, 7+, the shortest) within which the system waits for a return from the callback -- not more than just a few seconds. If a window message goes to the callback but there's no return from it for a longer time than this fixed period allows, the entire application is marked as "unresponsive" and its execution is forcibly interrupted by the system.

That said, a Windows GUI app must not perform any activity running in a tight Do/While/For loop unless this loop:
Such enforcement is usually done with the help of DoEvents statement in the languages that support it, e.g. VB or FBSL, or its equivalent in those that don't.

The simplest DoEvents implementation would be a simple While statement as shown below in pseudo-code: (do not use If instead of While because message handling must at all times have higher prioriry in a GUI program than any other task!)

While PeekMessage(PM_REMOVE)
  TranslateMessage()
  DispatchMessage()
WEnd


The entire DoEvents implementation in the VB6 sources counts more than a thousand lines of C++ code!

Clearly enough, any form of DoEvents will slow down the loop but this is a natural trade-off for the pleasure of working in a civilized GUI environment rather than in a medieval console/terminal/punchcard/abacus/whatever.

Your OpenGL test runs in a Do/Until loop that doesn't allow Windows to execute its pending WM_ messages. OpenGL render tasks do not and cannot substitute the genuine callback in an implementation like this.

I believe your Linux Wine grayouts are of the same nature as my stall/reboot and are caused by the phenomena that I've described above. Wine is supposed to mimic Windows as close as possible after all, isn't it? ;)
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on January 12, 2015, 02:40:31 PM
Hi Mike,

thanks for that info ...  indeed, yes , the test opengl procedure grays-out when running under Wine, the main demo (timer controlled (every 40 msec ) doesn't.  (running it on Win7 here,  however gave no problems (for whatever reasons - only under Linux , while giving an the images turned them gray ).
OK, the solutions will be easy, i hope --  have to look at the main GFA loop too ( do sleep  until me is nothing )  there is also   : doevents reading the manual..

thanks again for your expert help   Rob
(strangely, that evil part was something i found on the web  (named DEMO1 ) the code is   DO ...... some ogl ... UNTIL mouse-click- I used it for testing the ogl was working, i'll remove it and improve the 3D , for the moment Z value is restricted to max 255 (because coming from the bitmap )
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 12, 2015, 03:25:37 PM
Perhaps Do/Until without DoEvents inside would be feasible when run in a separate worker thread (there are app implementations that take much of OpenGL rendering out of the main thread), but in a simple single-threaded sample like that one, your best bet would be either DoEvents within the loop (luckily it appears to be available in GFA) or a timer.
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on January 14, 2015, 12:39:48 PM
Hi Mike,

Yes, it's working in a safe way now -- I added DoEvents inside the 2D loop and kept timing the 3D loop.
Changed the concept by not working on a BMP now (with the advantage the hits are not restricted to a max val of 255).
In the attached prog you can find a mathematical correct app now (with a serious scaling of the Z values - the max is mentioned in the info field)
The |stop| only works on the timer (it will not stop the 2D loop).

Another question (infact 2)
- You told me the abs() is rather expensive - but (thinking about this) then p.e. abs(x) > a  is identical with x*x>a*a (and a>0) --  the latter the faster ???
(I used this trick now).
- Working on the Linux 'puter, I tried something in the Austin Kyoto Common Lisp , and while it was here the fastest , on the Win7 it is the slowest (except the interpreters and the bytcode compiler CLISP)  ..  It is extremely frustrating to read the esoteric Lisp documentation ,  (maybe on purpose  ::)  )  -- digging into the fragments, rags of documentation , i found that on Windows GCL is translated into C , and then does a DynLoad (????)  --  on Linux it is compiled with the (part of the system) GCC - on Win I have not such a thing ....   what's DynLoad ???

thanks in advance, Rob


.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 14, 2015, 12:52:11 PM
It's wise not to put your head in the sand when Linux is a better choice. I have yet to find one solution to any problem I'm faced with.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 14, 2015, 01:43:42 PM
Hi Rob,

This one seems to produce a much, much better structured and completely filled-out grid -- looks cool! :) I wish there were some algo to have it smoothly colored or perhaps even turned into a surface rather than point cloud. A "real" 3D model might look really awesome.

1. The Abs() et al. problem in a tight loop is the function overhead, i.e. the time it takes to push the arguments, perform the actual call, and then fetch the return value clearing the arguments off the call stack in order to balance it. The time penalty accumulated over thousands of calls may be much heavier than the task that the function actually performs. You can see it yourself in x*x>y versus Abs(x)>y, even if floating-point multiplication and comparison aren't as speedy as their integer counterparts.

In C/C++/compatibles, you can define Abs() and other critical expressions as a preprocessor macro or inline function that would expand to a very fast in-place x < -y || x > +y though they would still look like function calls in the source script. But you can't do the same in most contemporary BASICs.

2. dynload is what *nix geeks would name the process of loading a dynamically linked library (.dll in Windows, .so in Linux, and .dylib in OSX) and calling functions from it. Such calls are executed exactly as fast as if the code were statically linked into the executable proper.

The difference in execution speed may be due to how well (or rather bad) GCC is optimized for Windows. The chase for being a Jack-of-all-trades for all known platforms often leads GCC to not being optimized well enough for anything other than PC Linux, and some of its optimizations for minor OSes in some of its builds in the past were known to break its compatibility with the best operating system in the world -- MS Windows -- very badly.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 14, 2015, 02:16:29 PM
I don't think you need to go much pass the Windows message pump to realize which is a better OS. I bitch about PHP but I'm typing this using it.
Title: Re: The buddhabrot (challenging ?)
Post by: Aurel on January 14, 2015, 02:36:22 PM
Quote
Windows message pump to realize which is a better OS
ha ha ha...
when we can expect message pump on linux ;D
never... ;)
no linux have x-server for this thing
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 14, 2015, 02:44:28 PM


Wikipedia definition of the event loop used by OS's (http://en.wikipedia.org/wiki/Event_loop)

Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 14, 2015, 03:19:23 PM
Quote from: Pediwikia
The "heart" of most Win32 applications is the WinMain function, which calls GetMessage(), in a loop. GetMessage blocks until a message, or "event", is received.

This is downright BS that must've been written by some evil-minded red-eyed linuxoid. The MS Windows main message loop uses a non-blocking PeekMessage(PM_REMOVE) call that returns immediately if there are currently no more messages pending in the message queue. Windows was designed as a versatile graphics environment from the very start, and that's why its "events" include literally hundreds of various window messages. OTOH Linux was console oriented originally, so its "events" and "signals" palette appears rather limited for rock-solid and reliable implementations of GUI infrastructure on top of its TTI-based kernel. Some work has been done to improve the situation in recent years but GUI still remains an "ugly duckling" in the Linux world of today.
Title: Re: The buddhabrot (challenging ?)
Post by: Aurel on January 14, 2015, 03:21:20 PM
Thanks Mike for replay ;)
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 14, 2015, 04:01:21 PM
I'm guessing that Linux's poor task manager has nothing to do with Wine running Windows applications so well. Why does almost every web server and multi-core mesh super computer run Linux? We must all be stupid and bought into the FREE thing must be the answer.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 14, 2015, 04:54:28 PM
That's probably because Windows is an all-purpose OS while Linux remains mostly a specific-task oriented and free instrument (much more importantly like in "free beer" than in "free speech"). You know there will always be someone taking advantage of something behind everyone else's back. :)

Linux achievements like Android or X Window still remain a deviation from the mainstream. Hopefully they will be able to proudly compete with genuine graphics OSes with time but sorry, not at this very moment.

Nonetheless I am glad I've found myself a nice niche Linux -- elementaryOS -- that's going to become a good starting point for me to learn from. But these are the developments of today rather than yesterday or the day before that, and I sincerely hope that eOS' dev team isn't going to fall apart soon like hundreds of Linux dev teams before them, just because they need to eat every day and feed their families too rather than protest for abstract freedoms while still living in slums. Humanity has been so far unable to invent anything better than money as a criterion and reward for one's dedicated work and talent. Everything else is but Communistic demagogy.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 14, 2015, 05:33:54 PM
Everyone should live with what they feel most comfortable with. I use both Linux and Windows regularly.  I shouldn't have to defend what one I prefer. Personally, I alway felt like I was bleeding using Windows. (anti-virus, 32 bit centric, fixes that come too late, ...)




Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 14, 2015, 06:00:02 PM
Everyone should live with what they feel most comfortable with.

No John,

We, the Windozers, will not let you linuxoids keep on living in anarchy, slum, and filth. You will be cared for, forcefully nursed and nourished, bathed and combed, decently dressed, employed, and put to lead a happy life with your wives and children for the benefit of society.

The mere presence of Windows on the market is Linux' strongest insentive to develop and keep struggling on. No Windows would mean no competition, no insentive, prompt stagnation, and eventual death. Linux is like Windows' prodigal son whose comeback is foregone once the rumbling of hunger in his stomack reaches a threshold level.

The above is said in good positive humor and doesn't need to be responded to. :)



(Just FYI: In Russian, Windows is feminine while Linux is masculine with a somewhat teen-ish shade of attitude.) :D
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 14, 2015, 07:11:32 PM
Quote
Just FYI: In Russian, Windows is feminine while Linux is masculine with a somewhat teen-ish shade of attitude.

I was just about to comment that I was surprised at your attitude toward Linux when your side of the pond is more Linux centric. The US market is still in a mess with Microsoft oscillations and consumer desire for platform neutrality. If you're computing to make a living, love what the customer loves and maximize on the relationship. My open source efforts (free time) reflect how I feel and where I would like to see the industry go.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 14, 2015, 07:47:03 PM
The US market is still in a mess with Microsoft oscillations and consumer desire for platform neutrality.

Below is a glimpse of the world's market share among desktop operating systems in the year 2014. Consumers are definitively neglecting Linux as a desktop OS worth mentioning; its pie as a separate entity is non-existent. That's where things really are next time you talk on behalf of the customers. Joking aside, I suppose the matter is closed here and now.

.
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 14, 2015, 07:55:53 PM
I would like to see the same pie chart incorporating ALL computing methods used on a daily basis. The desktop isn't king any more and laptops are slowly losing out to tablets for the more casual user.

Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 14, 2015, 08:03:34 PM
(http://cdn.bgr.com/2013/12/smartphones-pcs.png?w=624)

There is no such thing as "a casual user". Do not forget that both MS- and Apple-powered gadgets are also represented in this rising chart of "casual" devices:

(http://forums.crackberry.com/attachments/news-rumors-f40/283862d1404845813t-android-l-impact-runtime-bb10-top-smartphone-platforms-may-2014-325x325.png)

With Linux amounting to a little over 1% in desktop OSes, and through its Android hypostasis, to only slightly over 50% in "casual" gadgets, how much that would be all in all against Microsoft, I wonder? ;)

To cut the story short, a few hundred well motivated MS devs keep on outsmarting the rest of the world dramatically. That's yet another proof to the statement that History is written by individuals rather than faceless masses, GNU or no GNU. :)
Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 14, 2015, 09:56:46 PM
Are those PC's actually being used anymore? Is this based on web traffic?
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 14, 2015, 11:17:27 PM
ROFLMAO! I'm yet to be shown an office where employees would play the market using their Samsung smartphones, John!

(http://decoratingplan.com/wp-content/uploads/2014/07/computer-office-solutions.jpg)

Title: Re: The buddhabrot (challenging ?)
Post by: JRS on January 15, 2015, 12:28:47 AM
Reminds me of a chicken coup with cages lined up in a row. How do people work that way?

Could use some range free action here. (tele-commuting)
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 15, 2015, 01:07:33 AM
Could use some range free action here. (tele-commuting)

Hardly. D'you know what a remote freelancer's expected workplace would look like by the contemporary U.S. industry standards if one wants to be contracted on a per-hour basis? It should be a fixed-place workstation equipped with a realtime web camera and a keylogger! Otherwise one would never be hired at more than $5 per hour, which is a humiliating rate even in my country.

I can meet all the three requirements and I do switch on all that gear occasionally. :)
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on January 15, 2015, 03:21:42 AM
All,

@Mike, "smoothly colored" -- probably the values of the orbit traps are more suitable than these end values.
(see attached)
An easy code change , mainly adding world(x,y).trap into the udt, assigning and plotting it.

Here the trap is z=0 , but a line, a circle or even a grid could be easily set up.

best,  Rob


.
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 15, 2015, 03:49:26 AM
Hi Rob,

First of all, sorry for myself and John hijacking your thread for our usual friendly squabble. I'm experiencing a severe spell of procrastination on account of my projected move to a new residence. So, I just used that opportunity to distract myself from daily (nightly) worries. :)

Yes, this one looks attractive. But I'm sure that the both versions' point clouds can be used as vertices for OpenGL triangles or quads, which could effectively turn the grid into a set of interconnected 3D surfaces. It would be interesting to see what it might look like in reality.

Your orbit trap variant then might've looked very similar to the attached image of 2.5D Mandelbrot as seen in my GLSL fractal renderer called Fraxter. It's a pity that your computer is incapable of of running this advanced OpenGL app. :(

.
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on January 15, 2015, 08:20:00 AM
Ah, yes Fraxter -- I'll have a new machine soon  :) to experiment with it.

I'll see what I can do , I lowered the gaps between the points (doubled the number), and switched to Julia Fractals ...


attached ,   and a good base for improvement on the graphics


best Rob   (oops, change that R(c) value 0.06 into -0.2 ... much nicer)

.
Title: Re: The buddhabrot (challenging ?)
Post by: Aurel on January 15, 2015, 02:08:08 PM
hi Rob
So this is openGL with GFA basic .right ?
looks that work fine on my old comp  ;D
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 15, 2015, 05:47:21 PM
I'll have a new machine soon  :) to experiment with it.
Glad to hear that, Rob! A new PC is always a great event; a whole new world opening before your eyes! :D

Quote
(oops, change that R(c) value 0.06 into -0.2 ... much nicer)
I like the 0.06 thingy more. Yet the -0.2 "plate of boobs" is also not bad at all. :)
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on January 17, 2015, 02:44:45 AM
Thanks,

Aurel : yes GFA and OpenGL.
Mike : another idea is also storing the second last trap value - compare this with the last , will give an indication of the "speed" of the trap.  this give flower like images in pseudo 3D. 
Real 3D fractals are not so attractive imho , however i think if someone could define direction in 2D , it will be possible to set up 3D envolution boies
Title: Re: The buddhabrot (challenging ?)
Post by: Mike Lobanovsky on January 17, 2015, 07:17:08 AM
Real 3D fractals are not so attractive imho

WAT?

Are you serious? Have you ever flown inside a 3D fractal drawn with your own hands?!

Rush for a new PC now! Go for it, man!

:D

.
Title: Re: The buddhabrot (challenging ?)
Post by: RobbeK on January 17, 2015, 08:13:17 AM
Hi Mike,

I expressed myself poorly -- with real 3D I mean generated by f(x,y,z) and not the usual f(x,y,   g(x,y) ) which are based on 2D with an extra function giving it a z value.  I also meant the analytic onces - surely Koch, Klein etc... patterns can be perfectly (?) generated in 3D.
Rephrasing it correctly : using quaternions as a base and analytic functions - the most attractive ones are where j=k=0   (the 2D things) , the onces with k=0 can be found on the web :
http://www.bing.com/images/search?q=quaternion+fractals&FORM=HDRSC2  (beware , some are based on quads, but with some extra functions involved - not what I had in mind)

k != 0 may be more interesting, these are moving pictures  ;)

I hope I am wrong about these analytic 3D fractals, I profoundly hope ..   i think Steel Bank CL has a quadlisp package-- not sure it is public (probably used on these futuresque computers OS's - but both NASA and Google already running one)

best Rob -- my excuses, indeed 3D gives a better experience than 2D - but I was thinking about the mathematics -- but as said when I define a direction between two points in 3D I can setup a certain thickness around this axis , and we have yet another kind of 3D , but still based on 2D.