POV-Ray : Newsgroups : povray.binaries.images : 2nd Poser Post w/ Problem Server Time
19 Aug 2024 18:23:39 EDT (-0400)
  2nd Poser Post w/ Problem (Message 5 to 14 of 14)  
<<< Previous 4 Messages Goto Initial 10 Messages
From: Robert J Becraft
Subject: Re: 2nd Poser Post w/ Problem
Date: 15 Nov 2000 17:02:05
Message: <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}



Gilles Tran <tra### [at] inapginrafr> 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

From: Marc-Hendrik Bremer
Subject: Re: 2nd Poser Post w/ Problem
Date: 15 Nov 2000 17:18:54
Message: <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

From: Robert J Becraft
Subject: Re: 2nd Poser Post w/ Problem
Date: 15 Nov 2000 17:22:46
Message: <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-onlinede> 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

From: Robert J Becraft
Subject: Re: 2nd Poser Post w/ Problem
Date: 15 Nov 2000 18:00:27
Message: <3a13158b@news.povray.org>
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] aolcom> 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-onlinede> 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'
gown1a.jpg


 

From: Dawn McKnight
Subject: Re: 2nd Poser Post w/ Problem
Date: 15 Nov 2000 19:27:54
Message: <3A132A09.5392268A@mac.com>
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] maccom   |					-- Justine Devlin, M.D.


Post a reply to this message

From: Francois Labreque
Subject: Re: 2nd Poser Post w/ Problem
Date: 15 Nov 2000 22:05:10
Message: <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

From: Robert J Becraft
Subject: Re: 2nd Poser Post w/ Problem
Date: 15 Nov 2000 22:22:15
Message: <3a1352e7$1@news.povray.org>
Oh they are there... just have to look carefully to see them.
She is anatomically correct... no parts are missing.

Francois Labreque <fla### [at] attglobalnet> 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

From: Ken
Subject: Re: 2nd Poser Post w/ Problem
Date: 15 Nov 2000 22:55:22
Message: <3A135B25.95000498@pacbell.net>
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

From: Peter Popov
Subject: Re: 2nd Poser Post w/ Problem
Date: 16 Nov 2000 02:26:08
Message: <hs271to2820hahv5pf4jc7c1ogi9nndp1h@4ax.com>
On Wed, 15 Nov 2000 19:57:25 -0800, Ken <tyl### [at] pacbellnet> 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] usanet
TAG      e-mail : pet### [at] tagpovrayorg


Post a reply to this message

From: Ken
Subject: Re: 2nd Poser Post w/ Problem
Date: 16 Nov 2000 06:44:56
Message: <3A13C935.6BC246A8@pacbell.net>
Peter Popov wrote:
> 
> On Wed, 15 Nov 2000 19:57:25 -0800, Ken <tyl### [at] pacbellnet> 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

<<< Previous 4 Messages Goto Initial 10 Messages

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