POV-Ray : Newsgroups : povray.binaries.images : Devil's RollerCoaster Server Time
2 Apr 2025 20:11:12 EDT (-0400)
  Devil's RollerCoaster (Message 3 to 12 of 12)  
<<< Previous 2 Messages Goto Initial 10 Messages
From: kurtz le pirate
Subject: Re: Devil's RollerCoaster
Date: 22 Mar 2025 13:12:07
Message: <67deef67$1@news.povray.org>
On 22/03/2025 12:12, yesbird wrote:

> Looks good enough - I like the idea of strange geometric phenomena in
> space. Also going through your site I found this image. Could you share
> the code, please - I want to animate it. Mandelbulbs are too frightening
> for animation :).

The code is an isosurface fond on MathMod software.
Translated in SDL :


—————————————————————————————————————————————————
#declare R = function { k*(x/(x*x+y*y+z*z)) }

#declare PSkeletalGraph = function { 
cos(x)+cos(y)+cos(z)+(51/100)*(cos(x)*cos(y)+cos(y)*cos(z)+cos(z)*cos(x))+(147/100) 
}

#declare InvertPSkeletalGraph = function {
  PSkeletalGraph(R(x,y,z),R(y,x,z),R(z,y,x))
  }

// --- Isosurface
#declare Fxyz = function (x,y,z) { InvertPSkeletalGraph(x,y,z) }

isosurface {
	function { Fxyz(x,y,z) }
	max_gradient 800 // 3500
	contained_by { box { -L, +L } }
	pigment { Yellow }
	}
—————————————————————————————————————————————————


Good luck

-- 
kurtz le pirate
compagnie de la banquise


Post a reply to this message

From: yesbird
Subject: Re: Devil's RollerCoaster
Date: 22 Mar 2025 15:49:57
Message: <67df1465$1@news.povray.org>
On 22/03/2025 20:12, kurtz le pirate wrote:
> The code is an isosurface fond on MathMod software.
> Translated in SDL :
> ... 
> 
> Good luck

Thanks, I will try it.
--
YB


Post a reply to this message

From: yesbird
Subject: Re: Devil's RollerCoaster
Date: 22 Mar 2025 16:42:17
Message: <67df20a9$1@news.povray.org>
On 22/03/2025 20:12, kurtz le pirate wrote:
> The code is an isosurface fond on MathMod software.
> Translated in SDL :
> ..
> Good luck

I've rendered it ...
Sorry, but I mean fractal, found on the site, which image was attached.
--
YB


Post a reply to this message

From: Cousin Ricky
Subject: Re: Devil's RollerCoaster
Date: 22 Mar 2025 20:50:00
Message: <web.67df5a7dfccb8b7e60e0cc3d949c357d@news.povray.org>
yesbird <sya### [at] gmailcom> wrote:
> On 21/03/2025 02:04, Droj wrote:
> > ...
> > Comments are welcome
> >
> > Droj
> > https://droj.net/
> Looks good enough - I like the idea of strange geometric phenomena in
> space. Also going through your site I found this image. Could you share
> the code, please - I want to animate it. Mandelbulbs are too frightening
> for animation :).

Yikes!  That looks like a mutant tardigrade agglomerate from hell!


Post a reply to this message

From: Droj
Subject: Re: Devil's RollerCoaster
Date: 23 Mar 2025 13:45:00
Message: <web.67e0487efccb8b7eef371b9d3b2af915@news.povray.org>
yesbird <sya### [at] gmailcom> wrote:
> On 21/03/2025 02:04, Droj wrote:
> > ...
> > Comments are welcome
> >
> > Droj
> > https://droj.net/
> Looks good enough - I like the idea of strange geometric phenomena in
> space. Also going through your site I found this image. Could you share
> the code, please - I want to animate it. Mandelbulbs are too frightening
> for animation :).
> --
> YB

Hi yesbird,

thanks for you comment.
Sorry, but the image you posted was made with a little program called Quat 1.11
I found years ago (2002).
So no code available.
Droj
I agree to what you said about Mandelbulbs :))


Post a reply to this message

From: Droj
Subject: Re: Devil's RollerCoaster
Date: 23 Mar 2025 14:00:00
Message: <web.67e04b4afccb8b7eef371b9d3b2af915@news.povray.org>
kurtz le pirate <kur### [at] freefr> wrote:
> On 22/03/2025 12:12, yesbird wrote:
>
> > Looks good enough - I like the idea of strange geometric phenomena in
> > space. Also going through your site I found this image. Could you share
> > the code, please - I want to animate it. Mandelbulbs are too frightening
> > for animation :).
>
> The code is an isosurface fond on MathMod software.
> Translated in SDL :
>
>

> #declare R = function { k*(x/(x*x+y*y+z*z)) }
>
> #declare PSkeletalGraph = function {
> cos(x)+cos(y)+cos(z)+(51/100)*(cos(x)*cos(y)+cos(y)*cos(z)+cos(z)*cos(x))+(147/100)
> }
>
> #declare InvertPSkeletalGraph = function {
>   PSkeletalGraph(R(x,y,z),R(y,x,z),R(z,y,x))
>   }
>
> // --- Isosurface
> #declare Fxyz = function (x,y,z) { InvertPSkeletalGraph(x,y,z) }
>
> isosurface {
>  function { Fxyz(x,y,z) }
>  max_gradient 800 // 3500
>  contained_by { box { -L, +L } }
>  pigment { Yellow }
>  }

>
>
> Good luck
>
> --
> kurtz le pirate
> compagnie de la banquise

Hi klp,

yeah, that's the code but yours is more elegant than mine.
Droj


Post a reply to this message

From: jr
Subject: Re: Devil's RollerCoaster
Date: 23 Mar 2025 15:45:00
Message: <web.67e063c0fccb8b7ec342f2ec6cde94f1@news.povray.org>
hi,

"Droj" <803### [at] drojde> wrote:
> ...
> Infinity Fabric sounded a bit 'sober' so I called it Devil's RollerCoaster.
> ...
> Comments are welcome

not possible to tell from the image, but could the curve actually be "travelled"
like a rollercoaster ?  in which case my comment is: please make an animation,
seen from a visitor "riding the car" perspective.


in another reply you wrote:
> ... that's the code but yours is more elegant than mine.

I hope you will not let such thoughts stop you from publishing some of your
L-System stuff, so I too can "draw" Koch curves </grin>.


regards, jr.


Post a reply to this message

From: Droj
Subject: Re: Devil's RollerCoaster
Date: 25 Mar 2025 10:55:00
Message: <web.67e2c28cfccb8b7e4918ddce3b2af915@news.povray.org>
"jr" <cre### [at] gmailcom> wrote:
> hi,
>
Hi jr,
>
> not possible to tell from the image, but could the curve actually be "travelled"
> like a rollercoaster ?  in which case my comment is: please make an animation,
> seen from a visitor "riding the car" perspective.
>

Gee, making an animation using this object is far beyond my humble capabilities.
You saw the code kurtz le pirate published - I was just happy that my version of
code worked properly.

> in another reply you wrote:
> > ... that's the code but yours is more elegant than mine.
>
> I hope you will not let such thoughts stop you from publishing some of your
> L-System stuff, so I too can "draw" Koch curves </grin>.

Sure will do. If you have any special requests let me know.

regards
Droj


Post a reply to this message

From: Bald Eagle
Subject: Re: Devil's RollerCoaster
Date: 25 Mar 2025 11:50:00
Message: <web.67e2cfc7fccb8b7e6563700825979125@news.povray.org>
"jr" <cre### [at] gmailcom> wrote:

> not possible to tell from the image, but could the curve actually be "travelled"
> like a rollercoaster ?  in which case my comment is: please make an animation,
> seen from a visitor "riding the car" perspective.

Looks very much like a 600-cell

https://www.dimensions-math.org/Dim_E.htm

https://en.wikipedia.org/wiki/Regular_4-polytope#Regular_convex_4-polytopes

You'd need some way to convert the implicit formula describing the surface to
some sort of path, probably a set of parametric equations, or if there exist
discrete vertices - a way to order them so that a path could be calculated.  I'd
probably try using a maze-solving algorithm of some sort.

You might try posting the source for that shape somewhere like Stack Exchange,
Stack Overflow, other math forums, or find someone who works in the 4D shape
field who would find such a challenge an enjoyable puzzle.

Heck - ask Jos or Etienne who did the Dimensions movie.

- BW


Post a reply to this message

From: Bald Eagle
Subject: Re: Devil's RollerCoaster
Date: 25 Mar 2025 15:20:00
Message: <web.67e30102fccb8b7e6563700825979125@news.povray.org>
And of course, I forgot to mention Stephane Laurent, who codes in multiple
languages _including POV-Ray SDL_ and is a complete mathematical maniac.

https://www.r-bloggers.com/2020/02/drawing-a-stereographic-duoprism/

We need to bribe this man to be part of the dev team.  :D

- BW


Post a reply to this message

<<< Previous 2 Messages Goto Initial 10 Messages

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.