POV-Ray : Newsgroups : povray.binaries.images : WIP mini planet [81 Ko] Server Time
12 Aug 2024 17:17:18 EDT (-0400)
  WIP mini planet [81 Ko] (Message 1 to 10 of 11)  
Goto Latest 10 Messages Next 1 Messages >>>
From: JC (Exether)
Subject: WIP mini planet [81 Ko]
Date: 16 Jul 2003 03:20:31
Message: <3F14FCBA.70208@spam.fr>
I'm planning to use this planet for a representation of "le petit 
prince" which is a character of Saint Exupery a french writer.

The planet is an isosurface, and grass a bunch of some 300000 cones.

JC


Post a reply to this message


Attachments:
Download 'mini_planete.jpg' (80 KB)

Preview of image 'mini_planete.jpg'
mini_planete.jpg


 

From: Hugo Asm
Subject: Re: WIP mini planet [81 Ko]
Date: 16 Jul 2003 05:17:53
Message: <3f151841$1@news.povray.org>
Looks GREAT. I've had the same idea for a picture but never got lucky. The
water could be improved, I think, but the grass is great (something I hadn't
thought of) and the light is pretty, too.

Really good.. hmm.. Perhaps the stars...hmm, naa.. You know, there are too
few compared to the real universe but the grass is off-scale too.. :o)

Regards,
Hugo


Post a reply to this message

From: Ghost
Subject: Re: WIP mini planet [81 Ko]
Date: 16 Jul 2003 09:23:59
Message: <3F1551CC.DF7E28D4@duratechindustries.net>
This is great! It looks more like hair or fur rather than grass.  But it
-does- look like grass, too!  Say, how did you attach all that grass to the
surface anyhow?  I presume you used trace(), but I'm awfully curious how to
get it to conform to a sphere...
-Lawrence

"JC (Exether)" wrote:

> I'm planning to use this planet for a representation of "le petit
> prince" which is a character of Saint Exupery a french writer.
>
> The planet is an isosurface, and grass a bunch of some 300000 cones.
>
> JC
>
>   ------------------------------------------------------------------------
>  [Image]


Post a reply to this message

From: Apache
Subject: Re: WIP mini planet [81 Ko]
Date: 16 Jul 2003 17:18:11
Message: <3f15c113@news.povray.org>
With tiny trees instead of grass, it will really look like a small planet!


Post a reply to this message

From: Tom Galvin
Subject: Re: WIP mini planet [81 Ko]
Date: 16 Jul 2003 20:04:33
Message: <Xns93BACC1216C21tomatimporg@204.213.191.226>
"Apache" <apa### [at] yahoocom> wrote in
news:3f15c113@news.povray.org: 

> With tiny trees instead of grass, it will really look like a small
> planet! 
> 
> 

Ala Le petit prince?

http://ns.hrs.pvt.k12.ca.us/~sgee/images/princes.jpg


Post a reply to this message

From: JC (Exether)
Subject: Re: WIP mini planet [81 Ko]
Date: 17 Jul 2003 03:22:22
Message: <3F164EAA.7020505@spam.fr>
Ghost wrote:
> This is great! It looks more like hair or fur rather than grass.  But it
> -does- look like grass, too!  Say, how did you attach all that grass to the
> surface anyhow?  I presume you used trace(), but I'm awfully curious how to
> get it to conform to a sphere...
> -Lawrence
> 
> "JC (Exether)" wrote:
> 
> 
>>I'm planning to use this planet for a representation of "le petit
>>prince" which is a character of Saint Exupery a french writer.
>>
>>The planet is an isosurface, and grass a bunch of some 300000 cones.
>>
>>JC
>>
>>  ------------------------------------------------------------------------
>> [Image]
> 
> 

I first thought that having a uniform random repartition of points on a 
sphere was going to be difficult but I finally found an easy solution.
I take 3 random angles and I rotate my point around all 3 axes with 
these angles.

     #local a1=360*rand(MySeed);
     #local a2=360*rand(MySeed);
     #local a3=360*rand(MySeed);
     #local InitPos = vrotate (<10,0,0>, <a1,a2,a3>);
     #local Pos=trace (Terrain, 0, InitPos, Norm);

Then, I check if the altitude is above water level and I create the 
grass blade.

There might be more optimized solutions, but this one works.

JC


Post a reply to this message

From: JC (Exether)
Subject: Re: WIP mini planet [81 Ko]
Date: 17 Jul 2003 03:26:14
Message: <3F164F95.6000200@spam.fr>
Apache wrote:
> With tiny trees instead of grass, it will really look like a small planet!
> 
> 

Yes, with little imagination (and more texturing), the cones could be 
taken for pine trees. But I'm thinking about adding a few trees on the 
planet and some clouds too.

JC


Post a reply to this message

From: JC (Exether)
Subject: Re: WIP mini planet [81 Ko]
Date: 17 Jul 2003 03:28:56
Message: <3F165037.9090402@spam.fr>
Tom Galvin wrote:
> "Apache" <apa### [at] yahoocom> wrote in
> news:3f15c113@news.povray.org: 
> 
> 
>>With tiny trees instead of grass, it will really look like a small
>>planet! 
>>
>>
> 
> 
> Ala Le petit prince?
> 
> http://ns.hrs.pvt.k12.ca.us/~sgee/images/princes.jpg

Yes, you just provided me with the best image I could find on the net of 
Le petit prince. Thanks !
I think I'll have troubles modelling it ... I need to win the IRTC this 
round to get Poser. :-)
So go and vote for me (it's the whatstha.jpg image).  8-p

JC


Post a reply to this message

From: Tom Galvin
Subject: Re: WIP mini planet [81 Ko]
Date: 17 Jul 2003 04:34:56
Message: <Xns93BB2E73E2301tomatimporg@204.213.191.226>
"JC (Exether)" <no### [at] spamfr> wrote in news:3F1### [at] spamfr:


>> 
>> http://ns.hrs.pvt.k12.ca.us/~sgee/images/princes.jpg
> 
> Yes, you just provided me with the best image I could find on the net of 
> Le petit prince. Thanks !

Don't thank me.  Thank Google image search

http://images.google.com/images?q=le+petit+prince


Post a reply to this message

From: Luke
Subject: Re: WIP mini planet [81 Ko]
Date: 17 Jul 2003 10:41:41
Message: <3f16b5a5@news.povray.org>
"JC (Exether)" <no### [at] spamfr> wrote in message
news:3F1### [at] spamfr...
> Apache wrote:
> > With tiny trees instead of grass, it will really look like a small
planet!
> >
> >
>
> Yes, with little imagination (and more texturing), the cones could be
> taken for pine trees. But I'm thinking about adding a few trees on the
> planet and some clouds too.

-And some volcanos? And a rose? Baobabs?
Or, the planet with the lamp-post could look cool; especially if it provided
it's own lighting.

-Luke.


Post a reply to this message

Goto Latest 10 Messages Next 1 Messages >>>

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