POV-Ray : Newsgroups : povray.binaries.images : polygon to circle loft Server Time
3 May 2024 19:40:23 EDT (-0400)
  polygon to circle loft (Message 42 to 51 of 51)  
<<< Previous 10 Messages Goto Initial 10 Messages
From: clipka
Subject: Re: polygon to circle loft
Date: 14 May 2015 15:57:11
Message: <5554fe17$1@news.povray.org>
Am 14.05.2015 um 21:36 schrieb William F Pokorny:
> On 05/14/2015 03:04 PM, Doctor John wrote:
>> On 14/05/15 17:18, And wrote:
>>> I have a question.
>>> Can I upload more than one picture here?
>>>
>>
>> Yes. Proof attached
>>
>> John
>>
> I like that second one. The first, well, I'll opt not to comment...

The first one is a well-known major work of an equally well-known 
aspiring young artist who deserves utmost respect from all POVers. See 
povray.off-topic for details.


Post a reply to this message

From: Alain
Subject: Re: polygon to circle loft
Date: 14 May 2015 20:49:23
Message: <55554293$1@news.povray.org>

> I have a question.
> Can I upload more than one picture here?
>

 From any e-mail client: Yes
 From the web interface: No


Post a reply to this message

From: William F Pokorny
Subject: Re: polygon to circle loft
Date: 14 May 2015 20:50:02
Message: <555542ba$1@news.povray.org>
On 05/14/2015 03:57 PM, clipka wrote:
> Am 14.05.2015 um 21:36 schrieb William F Pokorny:
>> On 05/14/2015 03:04 PM, Doctor John wrote:
>>> On 14/05/15 17:18, And wrote:
>>>> I have a question.
>>>> Can I upload more than one picture here?
>>>>
>>>
>>> Yes. Proof attached
>>>
>>> John
>>>
>> I like that second one. The first, well, I'll opt not to comment...
>
> The first one is a well-known major work of an equally well-known
> aspiring young artist who deserves utmost respect from all POVers. See
> povray.off-topic for details.
>
Ah thanks, Christoph, for the pointer. I agree and my apologies. Proof I 
am not tuned into current artistic trends.


Post a reply to this message

From: And
Subject: Re: polygon to circle loft
Date: 15 May 2015 01:40:01
Message: <web.5555862b908ae4213f4ed4340@news.povray.org>
William F Pokorny <ano### [at] anonymousorg> wrote:
> On 05/14/2015 03:04 PM, Doctor John wrote:
> > On 14/05/15 17:18, And wrote:
> >> I have a question.
> >> Can I upload more than one picture here?
> >>
> >
> > Yes. Proof attached
> >
> > John
> >
> I like that second one. The first, well, I'll opt not to comment...
>
> And, I use Thunderbird as my interface to the povray news groups. With
> Thunderbird or similar you can indeed upload more than one image as John
> showed.
>
> While I am too lazy to verify it at the moment, I seem to recall the web
> interface to the news groups permits only one image per post. If true,
> and you are using the web interface, perhaps this is why you cannot
> attach more then one image.
>
> Bill P.


> > I have a question.
> > Can I upload more than one picture here?
> >
> From any e-mail client: Yes
> From the web interface: No


No wonder I cannot attach more then one image.


Post a reply to this message

From: And
Subject: Re: polygon to circle loft
Date: 15 May 2015 01:45:00
Message: <web.55558769908ae4213f4ed4340@news.povray.org>
"LanuHum" <Lan### [at] yandexru> wrote:
> "And" <49341109@ntnu.edu.tw> wrote:
> > Could you give me an example (code)?
> >
> > I never saw it.
>
> #version 3.7;
>
> global_settings {
> }
> background {rgbt<0.05, 0.05, 0.05, 0>}
>
> #declare Default_texture = pigment {rgb 0.8}
>
> #declare Material = texture {pigment {rgbt <0.8,0.8,0.8,0>}}
>
> #declare height = 0.5;
> #declare poly_n = 3;
> #declare poly_r = 0.5;
> #declare cycle_r = 0.13;
> #declare an = 2*pi/poly_n;
> #declare poly_thr = poly_r*cos(an/2);
> #declare bound=max(cycle_r,poly_r);
> #declare multi = 10;
>
> #declare poly_obj =
> polynomial{
> 4,
> xyz(0,2,2):multi*1,
> xyz(2,0,1):multi*2*height,
> xyz(1,0,2):multi*2*(poly_thr-cycle_r),
> xyz(2,0,0):multi*(-pow(height, 2)),
> xyz(0,0,2):multi*(-pow(cycle_r - poly_thr, 2)),
> xyz(1,0,1):multi*2*height*(-2*poly_thr + cycle_r),
> xyz(1,0,0):multi*2*pow(height,2)*poly_thr,
> xyz(0,0,1):multi*2*height*poly_thr*(poly_thr - cycle_r),
> xyz(0,0,0):multi*(-pow(poly_thr*height, 2))
> sturm
> }
>
> #declare mockup2 =
> difference{
>     cylinder{
>     <0,0,0.0>,<0,0,height>, bound
>     }
>
>     #for(i, 0, poly_n-1)
>         object{
>         poly_obj
>         inverse
>         rotate <0,0,degrees(an*i)>
>         }
>         plane{
>         <1,0,0>,-poly_thr
>         rotate <0,0,degrees(an*i)>
>         }
>     #end
> texture {pigment {rgb 1}}
> scale 3
> rotate <0,90,90>
> }
>
> mockup2
>
> light_source {
>     <4.08,5.9,5.1>
>     color rgb<1, 1, 1>
> }
>
> camera {
>     location  <0, 0, 0>
>     look_at  <0, 0, -1>
>     right <-1.7777777777777777, 0, 0>
>     up <0, 1, 0>
>     angle  49.134343
>     rotate  <-27.098163, 46.688390, -0.903519>
>     translate <7.481132, 5.343666, 6.507640>
> }

Oh, this section of code has some bugs, please use the file which I uploaded
later.


Post a reply to this message

From: And
Subject: Re: polygon to circle loft
Date: 15 May 2015 02:15:01
Message: <web.55558e3e908ae4213f4ed4340@news.povray.org>
Doctor John <j.g### [at] gmailcom> wrote:
> On 14/05/15 17:18, And wrote:
> > I have a question.
> > Can I upload more than one picture here?
> >
>
> Yes. Proof attached
>
> John
> --
> Protect the Earth
> It was not given to you by your parents
> You hold it in trust for your children

Thanks.

Nice pictures.


Post a reply to this message

From: Thomas de Groot
Subject: Re: polygon to circle loft
Date: 15 May 2015 03:47:56
Message: <5555a4ac$1@news.povray.org>
On 14-5-2015 21:04, Doctor John wrote:
> On 14/05/15 17:18, And wrote:
>> I have a question.
>> Can I upload more than one picture here?
>>
>
> Yes. Proof attached
>
> John
>
Careful study undoubtedly shows that the second work is made by the same 
artist as the first. Proof of that can be seen most clearly in the small 
doodle under the arch of the house on the left, but also in the way the 
top of the barrier posts are treated. While the first work has been 
confidently dated to within the last few weeks, the second one poses a 
bigger challenge. The subject for instance is unusual and has not been 
found in any earlier work of this young artist who is best known for his 
photo-realistic portraits. This is the first known cityscape theme in 
his small but growing portfolio, although it has been established that 
several works have been destroyed either accidentally, and sometimes 
purposefully, by the artist himself or by his guardians. In that light, 
the museum has started negotiations with the artist to at least preserve 
as much as possible of his work for posterity.

-- 
Thomas, Deputy Head Curator of the POV Museum.


Post a reply to this message

From: Doctor John
Subject: Re: polygon to circle loft
Date: 15 May 2015 06:02:57
Message: <5555c451$1@news.povray.org>
On 15/05/15 01:50, William F Pokorny wrote:
> On 05/14/2015 03:57 PM, clipka wrote:
>> Am 14.05.2015 um 21:36 schrieb William F Pokorny:
>>> I like that second one. The first, well, I'll opt not to comment...
>>
>> The first one is a well-known major work of an equally well-known
>> aspiring young artist who deserves utmost respect from all POVers. See
>> povray.off-topic for details.
>>
> Ah thanks, Christoph, for the pointer. I agree and my apologies. Proof I
> am not tuned into current artistic trends.

The Feegle says: No offence taken. I understand that new artistic
concepts can be challenging for all you oldies.

John (on behalf of the Feegle)
-- 
Protect the Earth
It was not given to you by your parents
You hold it in trust for your children


Post a reply to this message

From: LanuHum
Subject: Re: polygon to circle loft
Date: 15 May 2015 12:20:00
Message: <web.55561c1e908ae4217a3e03fe0@news.povray.org>
"And" <49341109@ntnu.edu.tw> wrote:

> Oh, this section of code has some bugs, please use the file which I uploaded
> later.

Oh, sorry!
Thanks!
:)


Post a reply to this message

From: And
Subject: Re: polygon to circle loft
Date: 16 May 2015 01:45:01
Message: <web.5556d8e8908ae421309053db0@news.povray.org>
"LanuHum" <Lan### [at] yandexru> wrote:
> "And" <49341109@ntnu.edu.tw> wrote:
>
> > Oh, this section of code has some bugs, please use the file which I uploaded
> > later.
>
> Oh, sorry!
> Thanks!
> :)

You are welcome.


Post a reply to this message

<<< Previous 10 Messages Goto Initial 10 Messages

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