Welcome to Fractal Forums

Fractal Software => Mandelbulber => Topic started by: ker2x on May 12, 2010, 11:40:25 AM




Title: mandelbulber on github ?
Post by: ker2x on May 12, 2010, 11:40:25 AM
hi !

it would be nice if you had the mandelbulber source code on github.
I'd like to follow and patch your software.

If you want to stay on sf.net, do you mind if i create a mirror of the sf.net repository on github ?

i want to, by priority :
1) learn
2) create a headless (no GUI) version (so i can run large rendering on large expensive multi-cpu server (that don't have X and gtk)).
3) create a "render farm" headless version (probably using MPI) to run on large cluster :)


Title: Re: mandelbulber on github ?
Post by: ker2x on May 13, 2010, 12:57:19 AM
I have a problem to understand the source code  ;D  :D  ;D

Code:
//operator przypisania
CMacierz& CMacierz::operator=(const CMacierz &macierz)
{
  if (this == &macierz) return *this;

  if((ilKolumn != macierz.ilKolumn) || (ilWierszy != macierz.ilWierszy))
  {
    ZwolnijPamiec();
    ilKolumn = macierz.ilKolumn;
    ilWierszy = macierz.ilWierszy;
    PrzydzielPamiec(ilWierszy, ilKolumn);
  }
  for(int i=0;i<ilWierszy;i++)
  {
    for(int j=0; j<ilKolumn;j++)
    {
      m[i][j] = macierz.m[i][j];
    }
  }
  return *this;
}

To be exact, i have a problem to understand polish   :dink:


Title: Re: mandelbulber on github ?
Post by: cKleinhuis on May 13, 2010, 01:55:43 AM
lol, nice to read, a good refactoring environment would be helpful for this, like eclipse and java, it makes it very easy to rename
variables, and adjust references ...

but it is astonishing that polish can be used as variable names :D

in german we just have ö=oe, ä=ae, ü=ue, and i am usually writing my emails programmer conform, without using those
chars ... ;)



Title: Re: mandelbulber on github ?
Post by: cbuchner1 on May 13, 2010, 02:50:49 PM

matrix, row, column. It's kind of straightforward in a Polish sense...


Title: Re: mandelbulber on github ?
Post by: Buddhi on May 13, 2010, 07:19:50 PM
Oh, ..., ups... I forget about this part of program. It is in Polish. I written this include (algebra.hpp) few years ago. Then I didn't think about publish it :) I will translate these variable names and comments to English. But now you have opportunity to learn Polish  :tongue1:


Title: Re: mandelbulber on github ?
Post by: ker2x on May 13, 2010, 07:22:53 PM
But now you have opportunity to learn Polish  :tongue1:

Good idea !  ^-^
But i'm already too busy learning the math of the mandelbox   :angry:


Title: Re: mandelbulber on github ?
Post by: cKleinhuis on May 13, 2010, 11:05:17 PM
i oinly know the first two lines of your hymn, in my spelling:

jezdze polska nie sienewa,
kiede my djeme

:D



Title: Re: mandelbulber on github ?
Post by: ker2x on June 09, 2010, 07:04:21 PM
I see that you translated everything !
Thanks a lot !  ;D