POV-Ray : Newsgroups : povray.binaries.images : Saturn Ring - a first wip Server Time
1 Jul 2024 01:35:52 EDT (-0400)
  Saturn Ring - a first wip (Message 1 to 10 of 24)  
Goto Latest 10 Messages Next 10 Messages >>>
From: Thomas de Groot
Subject: Saturn Ring - a first wip
Date: 3 Jan 2015 10:17:47
Message: <54a8081b@news.povray.org>
Following the little discussion in the thread Saturn's Greetings, I 
started to explore the ring structure. This is a very first wip using 1 
million discrete objects. Obviously, if I want to follow this approach 
further, I shall need many more objects. Writing their positions (and 
testing their visibility in the scene) takes most of the time. This 
exercise too about half an hour. Very acceptable.

I have not taken into account the real dimensions of the ring. I should 
provide for that too.

-- 
Thomas


Post a reply to this message


Attachments:
Download 'complex.png' (317 KB)

Preview of image 'complex.png'
complex.png


 

From: Christian Froeschlin
Subject: Re: Saturn Ring - a first wip
Date: 4 Jan 2015 20:05:06
Message: <54a9e342@news.povray.org>
On 03.01.2015 16:17, Thomas de Groot wrote:

> Obviously, if I want to follow this approach further, I shall need
> many more objects.

If that doesn't scale up you could try an isosurface such as

#declare f_particles = function(x,y,z)
{
   0.8 - f_crackle(400*x,400*y,400*z) +
   0.1 * f_granite(500*x,500*y,500*z)
}

isosurface
{
   function { f_particles(x,y,z) }
   contained_by { box {<-3,0,0>,<3,0.1,1000>} }
   accuracy 0.0001
   max_gradient 1000
   pigment {color rgb 1}
}


Post a reply to this message


Attachments:
Download 'particles2_800.png' (474 KB)

Preview of image 'particles2_800.png'
particles2_800.png


 

From: Thomas de Groot
Subject: Re: Saturn Ring - a first wip
Date: 5 Jan 2015 03:17:52
Message: <54aa48b0@news.povray.org>
Ah yes! That is what I need in addition. Thanks! I was thinking of using 
a media in combination with the ring particles but this would be much 
better indeed.

Note that the particles are also traced into a ring pattern Ideally, the 
isosurface should mimic that too.

Thomas


Post a reply to this message

From: Alain
Subject: Re: Saturn Ring - a first wip
Date: 5 Jan 2015 15:42:08
Message: <54aaf720$1@news.povray.org>
Le 15-01-05 03:17, Thomas de Groot a écrit :
> Ah yes! That is what I need in addition. Thanks! I was thinking of using
> a media in combination with the ring particles but this would be much
> better indeed.
>
> Note that the particles are also traced into a ring pattern Ideally, the
> isosurface should mimic that too.
>
> Thomas

Just add a wood or onion pattern to the function, or an image pattern to 
get a beter control.

#declare f_particles = function(x,y,z)
{
   0.8 - f_crackle(400*x,400*y,400*z) +
   0.1 * f_granite(500*x,500*y,500*z) +
   0.9 * f_onion(500*x,0,500*z)
}



Alain


Post a reply to this message

From: Thomas de Groot
Subject: Re: Saturn Ring - a first wip
Date: 6 Jan 2015 03:10:54
Message: <54ab988e$1@news.povray.org>
On 5-1-2015 21:43, Alain wrote:
> Just add a wood or onion pattern to the function, or an image pattern to
> get a beter control.
>
> #declare f_particles = function(x,y,z)
> {
>    0.8 - f_crackle(400*x,400*y,400*z) +
>    0.1 * f_granite(500*x,500*y,500*z) +
>    0.9 * f_onion(500*x,0,500*z)
> }

Yes, I had not got that far yet, but that was my intention indeed too :-)

An image is coming soon.

-- 
Thomas


Post a reply to this message

From: Thomas de Groot
Subject: Re: Saturn Ring - a first wip
Date: 6 Jan 2015 06:52:13
Message: <54abcc6d@news.povray.org>
Next attempt.

Here dimensions are correct for Saturn's B-ring.  The onion pattern in 
the function does not show in the fine structure. Maybe not too much of 
a problem; the larger particles determine the concentric structure.

-- 
Thomas


Post a reply to this message


Attachments:
Download 'complex.png' (722 KB)

Preview of image 'complex.png'
complex.png


 

From: Thomas de Groot
Subject: Re: Saturn Ring - a first wip
Date: 6 Jan 2015 08:17:19
Message: <54abe05f@news.povray.org>
The preceding image was rendered at a safe altitude of about 100 km 
above the ring. Cautiously navigating downwards, we are here at about an 
altitude of 10 km. :-)

Distance from Saturn's Centre: 100.000 km, which means still about some 
17.000 km from the B-ring's edge.

-- 
Thomas


Post a reply to this message


Attachments:
Download 'complex.png' (824 KB)

Preview of image 'complex.png'
complex.png


 

From: Thomas de Groot
Subject: Re: Saturn Ring - a first wip
Date: 6 Jan 2015 10:55:43
Message: <54ac057f@news.povray.org>
My pilot is reckless!

On our way to the rim of the B-ring, he plunged into the ring itself!

Media to simulate the sub-millimetre particles; reddish zone to indicate 
where the "mountains" are going to be. Distance to there is about 500 km.

-- 
Thomas


Post a reply to this message


Attachments:
Download 'complex.png' (452 KB)

Preview of image 'complex.png'
complex.png


 

From: Stephen
Subject: Re: Saturn Ring - a first wip
Date: 6 Jan 2015 11:21:58
Message: <54ac0ba6$1@news.povray.org>
On 06/01/2015 15:55, Thomas de Groot wrote:
> My pilot is reckless!
>
> On our way to the rim of the B-ring, he plunged into the ring itself!
>

Give him a copy of Elite Dangerous. :-)

> Media to simulate the sub-millimetre particles; reddish zone to indicate
> where the "mountains" are going to be. Distance to there is about 500 km.
>

This could be a screenshot albeit of a different quality.

-- 

Regards
     Stephen


Post a reply to this message

From: Jörg 'Yadgar' Bleimann
Subject: Re: Saturn Ring - a first wip
Date: 6 Jan 2015 11:34:13
Message: <54ac0e85$1@news.povray.org>
Hi(gh)!

On 06.01.2015 12:51, Thomas de Groot wrote:
> Next attempt.
>
> Here dimensions are correct for Saturn's B-ring.  The onion pattern in
> the function does not show in the fine structure. Maybe not too much of
> a problem; the larger particles determine the concentric structure.
>
The yellow half-lit sphere looming over the rings' edge - is it meant to 
be Titan? If yes, you perhaps should have chose a more orange hue...

See you in Khyberspace!

Yadgar

Now playing: Brothers in Arms (Dire Straits)


Post a reply to this message

Goto Latest 10 Messages Next 10 Messages >>>

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