POV-Ray : Newsgroups : povray.binaries.images : Cold work in progress (48KBbu) - lstest.jpg Server Time
2 Oct 2024 18:23:37 EDT (-0400)
  Cold work in progress (48KBbu) - lstest.jpg (Message 1 to 10 of 17)  
Goto Latest 10 Messages Next 7 Messages >>>
From: Justin Whitton
Subject: Cold work in progress (48KBbu) - lstest.jpg
Date: 9 Apr 2000 16:59:42
Message: <v8r1fscl83jeqv1009m53u4asac1ka86kt@4ax.com>
Whilst the weather over here has been swinging wildly between Winter
and Summer (it's yet to try Spring :-) I've tried my hand at Ridged
Multi-fractals.

It's a work in progress, comments are welcome.

---
Justin Whitton
_/\__/ mail: jus### [at] rayjayclaracouk \__/\_
 \/  \ web: www.rayjay.clara.co.uk             /  \/


Post a reply to this message


Attachments:
Download 'lstest.jpg' (48 KB)

Preview of image 'lstest.jpg'
lstest.jpg


 

From: TonyB
Subject: Re: Cold work in progress (48KBbu) - lstest.jpg
Date: 9 Apr 2000 17:18:55
Message: <38f0f3bf@news.povray.org>
So far, so good. :)


Post a reply to this message

From: Bob Hughes
Subject: Re: Cold work in progress (48KBbu) - lstest.jpg
Date: 9 Apr 2000 17:21:00
Message: <38f0f43c@news.povray.org>
Great thing for some Antarctica scene.  The ridges make for good snow drifts.

Bob

"Justin Whitton" <jus### [at] rayjayclaracouk> wrote in message
news:v8r1fscl83jeqv1009m53u4asac1ka86kt@4ax.com...
| Whilst the weather over here has been swinging wildly between Winter
| and Summer (it's yet to try Spring :-) I've tried my hand at Ridged
| Multi-fractals.


Post a reply to this message

From: David Fontaine
Subject: Re: Cold work in progress (48KBbu) - lstest.jpg
Date: 9 Apr 2000 18:12:41
Message: <38F10009.9CFC3BDD@faricy.net>
Justin Whitton wrote:

> Whilst the weather over here has been swinging wildly between Winter
> and Summer (it's yet to try Spring :-) I've tried my hand at Ridged
> Multi-fractals.

What are those/how do you make them?

--
___     _______________________________________________
 | \     |_          <dav### [at] faricynet> <ICQ 55354965>
 |_/avid |ontaine        http://www.faricy.net/~davidf/

"The only difference between me and a madman is that I'm not mad." -Dali


Post a reply to this message

From: Justin Whitton
Subject: Re: Cold work in progress (48KBbu) - lstest.jpg
Date: 9 Apr 2000 18:38:38
Message: <uu02fsgpl263c84g88rqc6q2if4hje1mhm@4ax.com>
On Sun, 09 Apr 2000 17:11:21 -0500, David Fontaine <dav### [at] faricynet>
wrote:
>> I've tried my hand at Ridged
>> Multi-fractals.
>
>What are those/how do you make them?

Using MegaPov0.4 they are a function to be used within the IsoSurface
object. To use them, you read the docs, gain as much comprehension as
an ant has of the Empire State building, and then start experimenting
with the parameters :-)

What they give you is the ability to create good terrain without
having to use height fields and their limitations (no height
quantizing, or large file sizes if you want a hugh terrain).

The code for the landscape follows.

#declare _landscape = function { "ridgedmf",<1,2,10,1.1,2> }

#declare landscape = isosurface {
	function {
		_landscape(x,0,z)-y
	}
	eval
	accuracy 0.001
	sign -1
	contained_by { box { <-1000,-3,-1000> <1000,3,1000> } }
	scale <4,1,4>
	scale 1/3
	texture { T_Landscape }
	scale 3
	scale 250
	hollow
}

object { landscape }

The landscape is declared so that I can the use trace() to place
objects (and the camera) on it.

Hope this helps.

---
Justin Whitton
_/\__/ mail: jus### [at] rayjayclaracouk \__/\_
 \/  \ web: www.rayjay.clara.co.uk             /  \/


Post a reply to this message

From: David Fontaine
Subject: Re: Cold work in progress (48KBbu) - lstest.jpg
Date: 9 Apr 2000 23:30:22
Message: <38F14A80.F54CA9A8@faricy.net>
Justin Whitton wrote:

> Using MegaPov0.4 they are a function to be used within the IsoSurface
> object. To use them, you read the docs, gain as much comprehension as
> an ant has of the Empire State building, and then start experimenting
> with the parameters :-)

I just read the docs; it helps to have an understanding of Perlin noise
:-)

--
___     _______________________________________________
 | \     |_          <dav### [at] faricynet> <ICQ 55354965>
 |_/avid |ontaine        http://www.faricy.net/~davidf/

"The only difference between me and a madman is that I'm not mad." -Dali


Post a reply to this message

From: Snowman
Subject: Re: Cold work in progress (48KBbu) - lstest.jpg
Date: 10 Apr 2000 01:57:55
Message: <38F16D36.D8AC464C@hotmail.com>
I like very much :-)


Post a reply to this message

From: Marc Schimmler
Subject: Re: Cold work in progress (48KBbu) - lstest.jpg
Date: 10 Apr 2000 03:32:22
Message: <38F18386.AE847F4E@ica.uni-stuttgart.de>
Justin Whitton wrote:
> 
> Whilst the weather over here has been swinging wildly between Winter
> and Summer (it's yet to try Spring :-) I've tried my hand at Ridged
> Multi-fractals.
> 
> It's a work in progress, comments are welcome.
> 

COOL :-)

Marc

-- 
Marc Schimmler


Post a reply to this message

From: Rick [Kitty5]
Subject: Re: Cold work in progress (48KBbu) - lstest.jpg
Date: 10 Apr 2000 06:47:36
Message: <38f1b148@news.povray.org>
Whoa.. that is really good.

Rick


Post a reply to this message

From: Sigmund Kyrre Aas
Subject: Re: Cold work in progress (48KBbu) - lstest.jpg
Date: 10 Apr 2000 12:41:19
Message: <38F20428.43E617C7@stud.ntnu.no>
Ooah-! That's good! I've been playing around with mf-s but never achieved such
realistic results. (Source?)

Are you using a blue ambient value or is it radiosity? IMHO it would be better
with less blue in the shadows.

sig.


Post a reply to this message

Goto Latest 10 Messages Next 7 Messages >>>

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