|
|
|
|
|
|
| |
| |
|
|
From: Jaime Vives Piqueres
Subject: "1.5k apples" WIP 4 (JPEG 83Kb)
Date: 11 Aug 2002 07:29:51
Message: <3d564aa5@news.povray.org>
|
|
|
| |
| |
|
|
There is the latest WIP for my apples scene. I've placed the basket and
also some other background objects.
The barrel is my old model, but translated to an isosurface for the real
woodgrain (still very wip). The red thing at the right tries to be a
courtain, but the isosurface is not very semblant to a cloth.
The area lights are off for this test, and the rad settings (loaded from
another scene with similar but simpler shapes and textures), are not very
high-quality. The focal blur settings are also poor. But render time is
scary: 7h for 512x384! I think the final render will take a few days...
Coments and critism expected, as usual...
--
Jaime Vives Piqueres
La Persistencia de la Ignorancia
http://www.ignorancia.org
Post a reply to this message
Attachments:
Download 'balanza.jpg' (83 KB)
Preview of image 'balanza.jpg'
|
|
| |
| |
|
|
|
|
| |
| |
|
|
That is superb!
A bottle of wine, some cheese and a loaf of bread....
Mick
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
What he said!!
Mick Hazelgrove wrote:
> That is superb!
>
> A bottle of wine, some cheese and a loaf of bread....
>
> Mick
>
>
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Mick Hazelgrove <mic### [at] mhazelgrovefsnetcouk> wrote:
> A bottle of wine
With photons!
--
#macro N(D)#if(D>99)cylinder{M()#local D=div(D,104);M().5,2pigment{rgb M()}}
N(D)#end#end#macro M()<mod(D,13)-6mod(div(D,13)8)-3,10>#end blob{
N(11117333955)N(4254934330)N(3900569407)N(7382340)N(3358)N(970)}// - Warp -
Post a reply to this message
|
|
| |
| |
|
|
From: Jaime Vives Piqueres
Subject: Re: "1.5k apples" WIP 4 (JPEG 83Kb)
Date: 17 Aug 2002 16:29:13
Message: <3d5eb218@news.povray.org>
|
|
|
| |
| |
|
|
Warp wrote:
> Mick Hazelgrove <mic### [at] mhazelgrovefsnetcouk> wrote:
>> A bottle of wine
>
> With photons!
>
Yeah, just what this scene needs to never end... :(
I'm thinking on alternatives to the isosurfaces used for the courtain and
the barrel, because the extreme render time is stoping me from adding more
features.
--
Jaime Vives Piqueres
La Persistencia de la Ignorancia
http://www.ignorancia.org
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Sat, 17 Aug 2002 22:36:43 +0200, Jaime Vives Piqueres
<jai### [at] ignoranciaorg> wrote:
> I'm thinking on alternatives to the isosurfaces used for the courtain and
> the barrel, because the extreme render time is stoping me from adding more
> features.
You can always post formulas of it here. Perhaps some tricks could be used to
simplify calculations.
ABX
Post a reply to this message
|
|
| |
| |
|
|
From: Jaime Vives Piqueres
Subject: Re: "1.5k apples" WIP 4 (JPEG 83Kb)
Date: 26 Aug 2002 16:50:08
Message: <3d6a9480@news.povray.org>
|
|
|
| |
| |
|
|
ABX wrote:
> You can always post formulas of it here. Perhaps some tricks could be used
> to simplify calculations.
Hmmm... it's just :
function{f_sphere(x,y,z,1)+f_granite(x*10,y*.01,z*10)*.005}
for a "base" isosurface from where I take several sections for the curved
boards. Do you think it can be enhanced? It's not really that slow, but
added to the other slow techniques I used, it increases the render time
notabily. Anyhow, I don't have any other idea on how to do it, and it looks
very nice and realistic... WIP 5 soon!
--
Jaime Vives Piqueres
La Persistencia de la Ignorancia
http://www.ignorancia.org
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Mon, 26 Aug 2002 22:58:14 +0200, Jaime Vives Piqueres
<jai### [at] ignoranciaorg> wrote:
> function{f_sphere(x,y,z,1)+f_granite(x*10,y*.01,z*10)*.005}
Have you experimented with HF_Sphere macro from shapes.inc ?
You can modify it to drop all triangles where all three vertices are outside
section you choosed. Creation with necessary accuracy can take some time but
created once it can be quickly reused in every next render.
ABX
Post a reply to this message
|
|
| |
| |
|
|
From: Jaime Vives Piqueres
Subject: Re: "1.5k apples" WIP 4 (JPEG 83Kb)
Date: 27 Aug 2002 06:23:02
Message: <3d6b5305@news.povray.org>
|
|
|
| |
| |
|
|
ABX wrote:
> Have you experimented with HF_Sphere macro from shapes.inc ?
> You can modify it to drop all triangles where all three vertices are
> outside section you choosed. Creation with necessary accuracy can take
> some time but created once it can be quickly reused in every next render.
Thanks! This must be the best solution, I think. I was trying to do it
directly with a height_field created internally with the function image
type, but I was having many problems to obtain the right curvature.
I was not aware of this macro. I'm reading the docs, but really slowly,
and not arrived yet to the includes: thanks again!
--
Jaime Vives Piqueres
La Persistencia de la Ignorancia
http://www.ignorancia.org
Post a reply to this message
|
|
| |
| |
|
|
From: Jaime Vives Piqueres
Subject: Re: "1.5k apples" WIP 4 (JPEG 83Kb)
Date: 27 Aug 2002 12:52:30
Message: <3d6bae4b@news.povray.org>
|
|
|
| |
| |
|
|
ABX wrote:
> Have you experimented with HF_Sphere macro from shapes.inc ?
> You can modify it to drop all triangles where all three vertices are
> outside section you choosed. Creation with necessary accuracy can take
> some time but created once it can be quickly reused in every next render.
I managed to make a derivative macro which generates only 1/4 of a
sphere, cutting from it (randomly) the curved boards. The mesh file only
takes 6MB and was generated quickly. Thanks to you and Rune for this great
macro! Also, your suggestion to use it was really clever and "ready to
use": wow!
I've attached the result: it needs still some work on the "wooden"
function for the mesh, but it's promissing.
--
Jaime Vives Piqueres
La Persistencia de la Ignorancia
http://www.ignorancia.org
Post a reply to this message
Attachments:
Download 'barril.jpg' (28 KB)
Preview of image 'barril.jpg'
|
|
| |
| |
|
|
|
|
| |