 |
 |
|
 |
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
Yes, the list is there.
I've modified the line for the dress to include the texture I applied to the
box.
If you scale the texture, it will shift to one of the other colors in the
color map, however, it is always one color. It does not take on the pattern
like the box. The texture and application section are here:
#declare DressText = texture {
pigment {
crackle
turbulence 1
lambda 1
frequency 2
color_map {
[0.0 color rgbf <1.0000, 0.2900,0.2000>]
[0.3 color rgbf <0.9297, 0.8438,0.6797,.45>]
[1.0 color rgbf <1.0000, 0.2900,0.2000>]
}
}
scale .0025
}
#declare OBJuvPOV_Texture_OBJuvPOVPreview1 = texture {DressText}
Gilles Tran <tra### [at] inapg inra fr> wrote in message
news:3A1294A8.DB49C745@inapg.inra.fr...
> Robert J Becraft wrote:
>
> > I've about gone nuts trying to put a crackle/agate/leopard/granite
texture
> > on this figure's dress... finally, I added a box in the background... as
you
> > can see, both the dress and the box have the same texture on them,
however,
> > the dress comes out a solid color while the box is the texture I
expected to
> > have on the dress?
>
> If you used 3DWin and exported as a mesh2 object, you should have a list
of the
> textures in the *_m.inc file. The dress texture should be listed. In one
the
> radiosity tests I posted some time ago, the list looked like this (it
should be
> shorter for a P3 figure). The T_* names are from Poser and 3DWin. I
declared the
> txtHead etc. textures before).
>
> #declare T_SkinHead = texture{txtHead}
> #declare T_Eyebrows = texture{txtHead}
> #declare T_Lips = texture{txtHead}
> #declare T_Lacrimal = texture{txtHead}
> #declare T_Eyelashes = texture{txtLashes}
> #declare T_InnerMouth = texture{txtHead}
> #declare T_Nostrils = texture{txtHead}
> #declare T_Tongue = texture{txtHead}
> #declare T_UpperEyebrows = texture{txtHead}
> #declare T_Teeth = texture{txtHead}
> #declare T_SkinBody = texture{txtBody}
> #declare T_Nipples = texture{txtBody}
> #declare T_Eyeballs = texture{txtHead finish{reflection 0.02}}
> #declare T_Pupils = texture{txtHead finish{reflection 0.02}}
> #declare T_Eyewhites = texture{txtHead finish{reflection 0.02}}
> #declare T_Irises = texture{txtHead}
> #declare T_Toenails = texture{txtBody}
> #declare T_Fingernails = texture{txtBody}
> #declare T_hair = texture{txtHair}
> #declare T_bangs = texture{txtHair}
> #declare T_wrap = texture{txtHair}
> #declare T_dress = texture{pigment{image_map{png
"dressmap"}}finish{finVicky}}
> // dress
>
>
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
I don't know if it is necessary with your converter-program, but did you
enable uv_mapping in the mesh description by putting "uv_mapping" at the end
of the object-description?
Just a (wild) guess ...
Marc-Hendrik
Robert J Becraft schrieb in Nachricht <3a1307dd@news.povray.org>...
>Yes, the list is there.
>
>I've modified the line for the dress to include the texture I applied to
the
>box.
>
>If you scale the texture, it will shift to one of the other colors in the
>color map, however, it is always one color. It does not take on the
pattern
>like the box. The texture and application section are here:
>
> #declare DressText = texture {
> pigment {
> crackle
> turbulence 1
> lambda 1
> frequency 2
> color_map {
> [0.0 color rgbf <1.0000, 0.2900,0.2000>]
> [0.3 color rgbf <0.9297, 0.8438,0.6797,.45>]
> [1.0 color rgbf <1.0000, 0.2900,0.2000>]
> }
> }
> scale .0025
> }
>#declare OBJuvPOV_Texture_OBJuvPOVPreview1 = texture {DressText}
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
I pulled out the section in the mesh .inc file that corresponds to the
dress... turned off the uv_vector portion and the uv_mapping variable at the
end of the mesh....
The dress still renders as one color.
Marc-Hendrik Bremer <Mar### [at] t-online de> wrote in message
news:3a130bce@news.povray.org...
> I don't know if it is necessary with your converter-program, but did you
> enable uv_mapping in the mesh description by putting "uv_mapping" at the
end
> of the object-description?
>
> Just a (wild) guess ...
>
> Marc-Hendrik
>
> Robert J Becraft schrieb in Nachricht <3a1307dd@news.povray.org>...
> >Yes, the list is there.
> >
> >I've modified the line for the dress to include the texture I applied to
> the
> >box.
> >
> >If you scale the texture, it will shift to one of the other colors in the
> >color map, however, it is always one color. It does not take on the
> pattern
> >like the box. The texture and application section are here:
> >
> > #declare DressText = texture {
> > pigment {
> > crackle
> > turbulence 1
> > lambda 1
> > frequency 2
> > color_map {
> > [0.0 color rgbf <1.0000, 0.2900,0.2000>]
> > [0.3 color rgbf <0.9297, 0.8438,0.6797,.45>]
> > [1.0 color rgbf <1.0000, 0.2900,0.2000>]
> > }
> > }
> > scale .0025
> > }
> >#declare OBJuvPOV_Texture_OBJuvPOVPreview1 = texture {DressText}
>
>
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
I GOT IT!
The problem was the uv_mapping variable at the end of the mesh statements.
There were three sections that corresponded to the dress. I had only turned
off the uv_mapping on the first one which was the bottom of the dress.
Image with dress with correct texture attached!
Robert J Becraft <cas### [at] aol com> wrote in message
news:3a130cb6@news.povray.org...
> I pulled out the section in the mesh .inc file that corresponds to the
> dress... turned off the uv_vector portion and the uv_mapping variable at
the
> end of the mesh....
>
> The dress still renders as one color.
>
>
> Marc-Hendrik Bremer <Mar### [at] t-online de> wrote in message
> news:3a130bce@news.povray.org...
> > I don't know if it is necessary with your converter-program, but did you
> > enable uv_mapping in the mesh description by putting "uv_mapping" at the
> end
> > of the object-description?
> >
> > Just a (wild) guess ...
> >
> > Marc-Hendrik
> >
> > Robert J Becraft schrieb in Nachricht <3a1307dd@news.povray.org>...
> > >Yes, the list is there.
> > >
> > >I've modified the line for the dress to include the texture I applied
to
> > the
> > >box.
> > >
> > >If you scale the texture, it will shift to one of the other colors in
the
> > >color map, however, it is always one color. It does not take on the
> > pattern
> > >like the box. The texture and application section are here:
> > >
> > > #declare DressText = texture {
> > > pigment {
> > > crackle
> > > turbulence 1
> > > lambda 1
> > > frequency 2
> > > color_map {
> > > [0.0 color rgbf <1.0000, 0.2900,0.2000>]
> > > [0.3 color rgbf <0.9297, 0.8438,0.6797,.45>]
> > > [1.0 color rgbf <1.0000, 0.2900,0.2000>]
> > > }
> > > }
> > > scale .0025
> > > }
> > >#declare OBJuvPOV_Texture_OBJuvPOVPreview1 = texture {DressText}
> >
> >
>
>
Post a reply to this message
Attachments:
Download 'gown1a.jpg' (39 KB)
Preview of image 'gown1a.jpg'

|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
Robert J Becraft wrote:
>
> I GOT IT!
>
> The problem was the uv_mapping variable at the end of the mesh statements.
> There were three sections that corresponded to the dress. I had only turned
> off the uv_mapping on the first one which was the bottom of the dress.
Hey, I have a dress like that... Thank goodness the straps don't slice
into my shoulders that way.
--
Dawn McKnight | "Who cares what the hipbone's connected to? I'm in Neurology!"
McK### [at] mac com | -- Justine Devlin, M.D.
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
Robert J Becraft wrote:
>
> I GOT IT!
>
> The problem was the uv_mapping variable at the end of the mesh statements.
> There were three sections that corresponded to the dress. I had only turned
> off the uv_mapping on the first one which was the bottom of the dress.
>
> Image with dress with correct texture attached!
>
>
> [Image]
Poor girl! She's got no legs!
--
Francois Labreque | It is by caffeine alone I set my mind in motion, it
flabreq | is by the beans of Java that thoughts acquire speed,
@ | the hands acquire shaking, the shaking becomes a
attglobal.net | warning, it is by caffeine alone I set my mind in
| motion.
- Stolen from Badger's .sig file
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
Oh they are there... just have to look carefully to see them.
She is anatomically correct... no parts are missing.
Francois Labreque <fla### [at] attglobal net> wrote in message
news:3A134EB2.9B16EEBE@attglobal.net...
>
>
> Robert J Becraft wrote:
> >
> > I GOT IT!
> >
> > The problem was the uv_mapping variable at the end of the mesh
statements.
> > There were three sections that corresponded to the dress. I had only
turned
> > off the uv_mapping on the first one which was the bottom of the dress.
> >
> > Image with dress with correct texture attached!
> >
> >
> > [Image]
>
>
> Poor girl! She's got no legs!
>
> --
> Francois Labreque | It is by caffeine alone I set my mind in motion, it
> flabreq | is by the beans of Java that thoughts acquire speed,
> @ | the hands acquire shaking, the shaking becomes a
> attglobal.net | warning, it is by caffeine alone I set my mind in
> | motion.
> - Stolen from Badger's .sig file
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
Robert J Becraft wrote:
> She is anatomically correct... no parts are missing.
Whoa ! She does have nice bump mapping that's for sure.
--
Ken Tyler - 1400+ POV-Ray, Graphics, 3D Rendering, and Raytracing Links:
http://home.pacbell.net/tylereng/index.html http://www.povray.org/links/
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
On Wed, 15 Nov 2000 19:57:25 -0800, Ken <tyl### [at] pacbell net> wrote:
>> She is anatomically correct... no parts are missing.
>
>Whoa ! She does have nice bump mapping that's for sure.
Those are bo^Hlobs, Ken.
(sorry, couldn't resist)
Peter Popov ICQ : 15002700
Personal e-mail : pet### [at] usa net
TAG e-mail : pet### [at] tag povray org
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
Peter Popov wrote:
>
> On Wed, 15 Nov 2000 19:57:25 -0800, Ken <tyl### [at] pacbell net> wrote:
>
> >> She is anatomically correct... no parts are missing.
> >
> >Whoa ! She does have nice bump mapping that's for sure.
>
> Those are bo^Hlobs, Ken.
>
> (sorry, couldn't resist)
We have been raytracing too long !
--
Ken Tyler - 1400+ POV-Ray, Graphics, 3D Rendering, and Raytracing Links:
http://home.pacbell.net/tylereng/index.html http://www.povray.org/links/
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |