POV-Ray : Newsgroups : povray.programming : Adding a new object Server Time
28 Jul 2024 12:34:27 EDT (-0400)
  Adding a new object (Message 8 to 17 of 17)  
<<< Previous 7 Messages Goto Initial 10 Messages
From: Christopher James Huff
Subject: Re: Adding a new object
Date: 6 Aug 2002 12:57:16
Message: <chrishuff-D43982.11471206082002@netplex.aussie.org>
In article <3d4f7bdd@news.povray.org>,
 "Ben Chambers" <bdc### [at] yahoocom> wrote:

> > > Second, a recursive object (ie, a fractal).
> > Like an L-system? That would be very interesting...I haven't done
> > anything with them. Not sure how useful it would be though.
> 
> Why not just script one?

Simple: slow parsing. Since POV 4.0 will probably use a VM for the 
language, that isn't such a big deal for the future.

-- 
Christopher James Huff <chr### [at] maccom>
POV-Ray TAG e-mail: chr### [at] tagpovrayorg
TAG web site: http://tag.povray.org/


Post a reply to this message

From: John VanSickle
Subject: Re: Adding a new object
Date: 6 Aug 2002 15:02:46
Message: <3D501D67.23725A51@hotmail.com>
Ben Chambers wrote:
> 
> "Christopher James Huff" <chr### [at] maccom> wrote in message
> news:chr### [at] netplexaussieorg...
> 
> > > Second, a recursive object (ie, a fractal).
> >
> > Like an L-system? That would be very interesting...I haven't done
> > anything with them. Not sure how useful it would be though.
> 
> Why not just script one?

To allow memory to be saved (at the expense of rendering speed, but
some people would welcome that).

Regards,
John


Post a reply to this message

From: John VanSickle
Subject: Re: Adding a new object
Date: 6 Aug 2002 15:07:30
Message: <3D501E84.99B8A6AD@hotmail.com>
Le Forgeron wrote:
> 
> Christopher James Huff wrote:
> 
> > In article <3D4EC82C.C892E71F@hotmail.com>,
> >  John VanSickle <evi### [at] hotmailcom> wrote:
> >
> >>First, incorporate quadrilaterals into the mesh object.  This would
> >>make polygon modelling simpler.
> >>
> >
> > That wouldn't really be a primitive, just an addition to the mesh
> > syntax. Probably quite easy, just look at how it parses triangles
> > and add code to parse a quad instead, splitting it into two
> > triangles to add to the mesh.
> 
> Why stop at the quadrilateral, let's have also a plain polygon
> 
> (no hole) in the mesh parser (while still storing only triangles).
> Then handling the quadrilateral is just a subcase of the generic
> polygon.

I was actually thinking of storing the quads as quads, internally,
on the guess that they can be optimized to the point that they render
faster than the two triangles that would replace each.

Maybe not.

I'm also working on my subdivision surface macros, and have found a
way to extend the Loop surface to support quadrilaterals in addition
to triangles; hence my interest in adding that to the mesh.

Regards,
John


Post a reply to this message

From: Warp
Subject: Re: Adding a new object
Date: 6 Aug 2002 18:20:03
Message: <3d504b93@news.povray.org>
John VanSickle <evi### [at] hotmailcom> wrote:
> First, incorporate quadrilaterals into the mesh object.  This would
> make polygon modelling simpler.

  What would be the advantage of this over using two triangles?

-- 
#macro M(A,N,D,L)plane{-z,-9pigment{mandel L*9translate N color_map{[0rgb x]
[1rgb 9]}scale<D,D*3D>*1e3}rotate y*A*8}#end M(-3<1.206434.28623>70,7)M(
-1<.7438.1795>1,20)M(1<.77595.13699>30,20)M(3<.75923.07145>80,99)// - Warp -


Post a reply to this message

From: Le Forgeron
Subject: Re: Adding a new object
Date: 7 Aug 2002 03:37:55
Message: <3D50CE54.50901@free.fr>
Warp wrote:

> John VanSickle <evi### [at] hotmailcom> wrote:
> 
>>First, incorporate quadrilaterals into the mesh object.  This would
>>make polygon modelling simpler.
>>
> 
>   What would be the advantage of this over using two triangles?


None for native pov, but when converting other 3D mesh formats, some
of them do not stick to the triangles and have either quadrilaterals,
or simple polygon ("simple", because not like the Pov polygon object).

So supporting the polygon in mesh would allows an easier writing of the
conversion programs.


Post a reply to this message

From: John VanSickle
Subject: Re: Adding a new object
Date: 9 Aug 2002 13:31:33
Message: <3D53FC78.58CDC5DE@hotmail.com>
Warp wrote:
> 
> John VanSickle <evi### [at] hotmailcom> wrote:
> > First, incorporate quadrilaterals into the mesh object.  This would
> > make polygon modelling simpler.
> 
>   What would be the advantage of this over using two triangles?

When something is extruded, it makes more sense to extrude edges as
quads rather than a pair of triangles.

It also makes it easier to deal with a problem involving the Loop
method of surface subdivision.

Regards,
John


Post a reply to this message

From: Warp
Subject: Re: Adding a new object
Date: 9 Aug 2002 16:39:31
Message: <3d542883@news.povray.org>
I have another advantage: UV-mapping a quadrilateral consisting of two
triangles simply doesn't work right. A true quadrilateral with properly
implemented UV-mapping would work right.
  Of course this poses a problem: How do you texture an UV-mapped
quadrilateral in patological cases (eg. when it's concave)?

-- 
#macro M(A,N,D,L)plane{-z,-9pigment{mandel L*9translate N color_map{[0rgb x]
[1rgb 9]}scale<D,D*3D>*1e3}rotate y*A*8}#end M(-3<1.206434.28623>70,7)M(
-1<.7438.1795>1,20)M(1<.77595.13699>30,20)M(3<.75923.07145>80,99)// - Warp -


Post a reply to this message

From: Peter Popov
Subject: Re: Adding a new object
Date: 10 Aug 2002 04:00:02
Message: <3uh9luos2jm4g4i745e1berj6jonbuda9h@4ax.com>
On 9 Aug 2002 16:39:31 -0400, Warp <war### [at] tagpovrayorg> wrote:

>  Of course this poses a problem: How do you texture an UV-mapped
>quadrilateral in patological cases (eg. when it's concave)?

I can tell you how to do the forward operation (i.e. from uv to xyz),
but I gave up trying to reverse it, although I am dead sure it has a
unique solution.


Peter Popov ICQ : 15002700
Personal e-mail : pet### [at] vipbg
TAG      e-mail : pet### [at] tagpovrayorg


Post a reply to this message

From: Warp
Subject: Re: Adding a new object
Date: 10 Aug 2002 10:30:18
Message: <3d55237a@news.povray.org>
By the way, this scene demonstrates the problem with uv-mapping when
using two triangles to make a quadrilateral (AFAIK there's no way to
avoid this effect):

camera { location -z*4 look_at 0 }
mesh2
{ vertex_vectors { 4, <-2,-1.5,0>, <2,-1.5,0>, <1,1.5,0>, <-1,1.5,0> }
  uv_vectors { 4, <0,0>, <1,0>, <1,1>, <0,1> }
  face_indices { 2, <0,1,2>, <0,2,3> }
  uv_mapping
  texture
  { pigment { gradient x color_map { [0 rgb 0][1 rgb 1] } scale .1 }
    finish { ambient 1 }
  }
}

  A true quadrilateral could interpolate the texture along the whole
quadrilateral instead of the two separate triangles, giving a more logical
result.

-- 
#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: John VanSickle
Subject: Re: Adding a new object
Date: 11 Aug 2002 08:45:04
Message: <3D565C55.A6BC827F@hotmail.com>
Warp wrote:
> 
>   I have another advantage: UV-mapping a quadrilateral consisting of
> two triangles simply doesn't work right. A true quadrilateral with
> properly implemented UV-mapping would work right.
>   Of course this poses a problem: How do you texture an UV-mapped
> quadrilateral in patological cases (eg. when it's concave)?

Put a warning in the docs that it may not work right...


Post a reply to this message

<<< Previous 7 Messages Goto Initial 10 Messages

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