POV-Ray : Newsgroups : povray.newusers : text on a cylinder Server Time
31 Jul 2024 14:34:38 EDT (-0400)
  text on a cylinder (Message 1 to 10 of 20)  
Goto Latest 10 Messages Next 10 Messages >>>
From: J Tellings
Subject: text on a cylinder
Date: 3 Nov 2002 06:38:49
Message: <3dc50ac9@news.povray.org>
Hello,

I want to make a text on a cylinder. Does anyone know a script to do this?

Thanks a lot!


Post a reply to this message

From: Warp
Subject: Re: text on a cylinder
Date: 3 Nov 2002 10:56:23
Message: <3dc54726@news.povray.org>
J Tellings <j_t### [at] hotmailcom> wrote:
> I want to make a text on a cylinder. Does anyone know a script to do this?

  Read the documentation about the object pattern and cylindrical warp.
That should get you started.

-- 
#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: J Tellings
Subject: Re: text on a cylinder
Date: 3 Nov 2002 12:54:39
Message: <3dc562df$1@news.povray.org>
"Warp" <war### [at] tagpovrayorg> wrote in message
news:3dc54726@news.povray.org...
> J Tellings <j_t### [at] hotmailcom> wrote:
> > I want to make a text on a cylinder. Does anyone know a script to do
this?
>
>   Read the documentation about the object pattern and cylindrical warp.
> That should get you started.
>
> --
> #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 -

I'm very sorry but your macro doesn't work. I want to make a text-object
(3D-text) on a cylinder.

Thanks!!


Post a reply to this message

From:
Subject: Re: text on a cylinder
Date: 3 Nov 2002 13:19:26
Message: <3dc568ae$1@news.povray.org>
J Tellings schrieb:
> Hello,
>
> I want to make a text on a cylinder. Does anyone know a script to do
> this?

I have no script. But i did this as follows:

1. create your cylinder
2. create a second cylinder with r=r1+0.0001
3. create your text on the right position
4. put your text and the cylinder from 2. together
   with intersection{}



--

http://www.matwei.de


Post a reply to this message

From: J Tellings
Subject: Re: text on a cylinder
Date: 3 Nov 2002 14:46:23
Message: <3dc57d0f@news.povray.org>

news:3dc568ae$1@news.povray.org...
> J Tellings schrieb:
> > Hello,
> >
> > I want to make a text on a cylinder. Does anyone know a script to do
> > this?
>
> I have no script. But i did this as follows:
>
> 1. create your cylinder
> 2. create a second cylinder with r=r1+0.0001
> 3. create your text on the right position
> 4. put your text and the cylinder from 2. together
>    with intersection{}
>
>
>
> --

> http://www.matwei.de
>
Thanks, this is a good and easy solution.


Post a reply to this message

From: J Tellings
Subject: Re: text on a cylinder
Date: 3 Nov 2002 14:46:55
Message: <3dc57d2f@news.povray.org>
"Warp" <war### [at] tagpovrayorg> wrote in message
news:3dc54726@news.povray.org...
> J Tellings <j_t### [at] hotmailcom> wrote:
> > I want to make a text on a cylinder. Does anyone know a script to do
this?
>
>   Read the documentation about the object pattern and cylindrical warp.
> That should get you started.
>
> --
> #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 -

Thanks, but ive already got the solution from anyone else.


Post a reply to this message

From: Warp
Subject: Re: text on a cylinder
Date: 3 Nov 2002 17:05:19
Message: <3dc59d9f@news.povray.org>
J Tellings <j_t### [at] hotmailcom> wrote:
>>   Read the documentation about the object pattern and cylindrical warp.
>> That should get you started.

> I'm very sorry but your macro doesn't work. I want to make a text-object
> (3D-text) on a cylinder.

  Uh? Which macro?

-- 
#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: Warp
Subject: Re: text on a cylinder
Date: 3 Nov 2002 17:05:55
Message: <3dc59dc3@news.povray.org>

> 1. create your cylinder
> 2. create a second cylinder with r=r1+0.0001
> 3. create your text on the right position
> 4. put your text and the cylinder from 2. together
>    with intersection{}

  This will not bend the text, so it will not work.

-- 
#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: Warp
Subject: Re: text on a cylinder
Date: 3 Nov 2002 17:06:58
Message: <3dc59e01@news.povray.org>
J Tellings <j_t### [at] hotmailcom> wrote:
> Thanks, but ive already got the solution from anyone else.

  Just believe me: What you want is to make an object pattern with the
text object and then apply a cylindrical warp to it.
  The other solution will not bend the text. This will.

-- 
#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: Roz
Subject: Re: text on a cylinder
Date: 3 Nov 2002 17:52:33
Message: <3DC5A8CE.6060703@netscape.net>
Warp wrote:
> J Tellings <j_t### [at] hotmailcom> wrote:
> 
>>>  Read the documentation about the object pattern and cylindrical warp.
>>>That should get you started.
>>
> 
>>I'm very sorry but your macro doesn't work. I want to make a text-object
>>(3D-text) on a cylinder.
> 
> 
>   Uh? Which macro?
> 

I suspect J Tellings thought your signature was the solution to his/her
problem. Some newsreaders probably don't make the signature stand out
as something separate from the body of the message. I'm only guessing
though.

-Roz


Post a reply to this message

Goto Latest 10 Messages Next 10 Messages >>>

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