Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread 'Pascal Jasmin' via Programming
That is cool. Carry on. I was just assuming that constructor params were always '' from not looking carefully. - Original Message - From: Michal Wallace To: programm...@jsoftware.com Sent: Sunday, January 3, 2016 10:31 AM Subject: Re: [Jprogramming] feedback wanted for ma

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Michal Wallace
On Sun, Jan 3, 2016 at 8:37 AM, 'Pascal Jasmin' via Programming < programm...@jsoftware.com> wrote: > mistyped sorry > > > mbrowse_z_ =: conew bind 'mbrowse' Oh. If I do this, then mbrowse'' returns a new namespace, but doesn't actually run the constructor. (f bind y) x -> (f y) (f & y) x ->

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Michal Wallace
Thanks, David and Cliff, for pointing out the 'number of iterations' thing. I added some keys to change this, and updated the docs. On Sun, Jan 3, 2016 at 6:49 AM, David Lambert wrote: > The program works and is fairly easy to read with the caveats that I had > to read the source to guess for th

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread 'Pascal Jasmin' via Programming
mistyped sorry mbrowse_z_ =: conew bind 'mbrowse' - Original Message - From: Michal Wallace To: programm...@jsoftware.com Sent: Sunday, January 3, 2016 9:03 AM Subject: Re: [Jprogramming] feedback wanted for mandelbrowse tutorial On Sat, Jan 2, 2016 at 9:08 PM, 'Pas

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread bill lam
I guess it was a typo and he meant bind. On Jan 3, 2016 10:03 PM, "Michal Wallace" wrote: > On Sat, Jan 2, 2016 at 9:08 PM, 'Pascal Jasmin' via Programming < > programm...@jsoftware.com> wrote: > > > > mbrowse_z_ =: conew bond 'mbrowse' > > > > Thanks for looking. > What's bond? I don't seem to

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Michal Wallace
On Sat, Jan 2, 2016 at 9:08 PM, 'Pascal Jasmin' via Programming < programm...@jsoftware.com> wrote: > > mbrowse_z_ =: conew bond 'mbrowse' > Thanks for looking. What's bond? I don't seem to have this conjunction in j804, other than in the 'primitives' package, where it's just an alias for `&`. --

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Linda A Alvord
: Sunday, January 3, 2016 7:32 AM To: programm...@jsoftware.com Subject: Re: [Jprogramming] feedback wanted for mandelbrowse tutorial Pascal, Viewmat is a dyadic verb. All you need is a table of (N,3) of colors like ]P=:3 3$255 0 0 255 255 0 0 0 255 255 0 0 255 255 0 0 0 255 Thi

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Cliff Reiter
Nice work. I believe the smoothing that you see is due to the max bound on the number of iterations (24). But as you raise that, things slow down. On 1/2/2016 9:11 PM, Michal Wallace wrote: Hey all. Happy new year! I made a small GUI app for a tutorial video I'm planning: https://github.

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread David Lambert
Jan 2016 20:11:45 -0600 From: Michal Wallace To:programm...@jsoftware.com Subject: [Jprogramming] feedback wanted for mandelbrowse tutorial Message-ID: Content-Type: text/plain; charset=UTF-8 Hey all. Happy new year! I made a small GUI app for a tutorial video I'm planning:

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-03 Thread Linda A Alvord
om: programming-boun...@forums.jsoftware.com [mailto:programming-boun...@forums.jsoftware.com] On Behalf Of 'Pascal Jasmin' via Programming Sent: Saturday, January 2, 2016 10:09 PM To: programm...@jsoftware.com Subject: Re: [Jprogramming] feedback wanted for mandelbrowse tutorial looks

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-02 Thread Brian Schott
No, that does not alter the results. I thought at first it did. (B=) -- For information about J forums see http://www.jsoftware.com/forums.htm

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-02 Thread Brian Schott
Does this help? mbrot =: [: x: [: +/ 2 <&| (+ *:) ::_:"0 -- (B=) -- For information about J forums see http://www.jsoftware.com/forums.htm

Re: [Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-02 Thread 'Pascal Jasmin' via Programming
Michal Wallace To: programm...@jsoftware.com Sent: Saturday, January 2, 2016 9:11 PM Subject: [Jprogramming] feedback wanted for mandelbrowse tutorial Hey all. Happy new year! I made a small GUI app for a tutorial video I'm planning: https://github.com/tangentstorm/mandelbrowse It draw

[Jprogramming] feedback wanted for mandelbrowse tutorial

2016-01-02 Thread Michal Wallace
Hey all. Happy new year! I made a small GUI app for a tutorial video I'm planning: https://github.com/tangentstorm/mandelbrowse It draws the mandelbrot set, and lets you zoom in and out. I was hoping I could get some feedback on the code before I filmed anything. In particular, you can onl