POV-Ray : Newsgroups : povray.newusers : <no subject> Server Time
28 Jun 2024 23:13:00 EDT (-0400)
  <no subject> (Message 1 to 10 of 12)  
Goto Latest 10 Messages Next 2 Messages >>>
From: rode
Subject: <no subject>
Date: 1 Jul 2011 06:15:01
Message: <web.4e0d9d8dc23a6d9f58fe2c40@news.povray.org>
Hello Povray users!
I have a quite annoying problem which I've been trying to figure out for the
last
month...please help. The thing is have exported model with given texture(and
there are lots of elements with the same texture) the texture looks like that:

texture
   {
    uv_mapping
    pigment
    {
     color <0, 0, 0>
     transmit 0.5
     filter 1
    }
    finish
    {
     diffuse 1
     ambient 0
    }
   }
  }
I have declared another texture:

#declare Milky =
texture{
    pigment
    {
     rgbft <1, 1, 1, 0.4, 0.5>
    }
    finish
    {
     diffuse 1.5
     ambient 0
     specular 0.2
     phong 0.4
     roughness 0.1
     reflection 0.05

    }}
And now the question is: HOW TO REPLACE THE EXPORTED TEXTURE WITH THE NEW ONE
ON ALL THESE ELEMENTS??


Post a reply to this message

From: Jim Holsenback
Subject: Re: <no subject>
Date: 1 Jul 2011 06:54:17
Message: <4e0da759@news.povray.org>
On 07/01/2011 07:12 AM, rode wrote:
> Hello Povray users!
> I have a quite annoying problem which I've been trying to figure out for the
> last
> month...please help. The thing is have exported model with given texture(and
> there are lots of elements with the same texture) the texture looks like that:
>
> texture
>     {
>      uv_mapping
>      pigment
>      {
>       color<0, 0, 0>
>       transmit 0.5
>       filter 1
>      }
>      finish
>      {
>       diffuse 1
>       ambient 0
>      }
>     }
>    }
> I have declared another texture:
>
> #declare Milky =
> texture{
>      pigment
>      {
>       rgbft<1, 1, 1, 0.4, 0.5>
>      }
>      finish
>      {
>       diffuse 1.5
>       ambient 0
>       specular 0.2
>       phong 0.4
>       roughness 0.1
>       reflection 0.05
>
>      }}
> And now the question is: HOW TO REPLACE THE EXPORTED TEXTURE WITH THE NEW ONE
> ON ALL THESE ELEMENTS??
>
>
>
>
unless I'm missing something ... sounds like you'll need to edit the 
exported model file!
make sure the Milky texture is declared in your main scene file /before/ 
you have your model include directive (so the model file knows about 
Milky) then find all the occurrences of the original texture and replace 
them with texture { Milky }


Post a reply to this message

From: rode
Subject: Re: <no subject>
Date: 1 Jul 2011 07:35:01
Message: <web.4e0db01d6f92e856f58fe2c40@news.povray.org>
Povray is recognizing the texture "Milky" becouse I have made it in the Povray
so this is not the problem the thing is how to replace the imported texture (I
can not change it in the software I have exported the model from)  with the
"Milky" that I have created in the Povray on the numerous of elements.
To make it straightforward:
1.How to replace one texture with the other one on the numerous of elements?


Post a reply to this message

From: Jim Holsenback
Subject: Re: <no subject>
Date: 1 Jul 2011 07:47:19
Message: <4e0db3c7$1@news.povray.org>
On 07/01/2011 08:31 AM, rode wrote:
> Povray is recognizing the texture "Milky" becouse I have made it in the Povray
> so this is not the problem the thing is how to replace the imported texture (I
> can not change it in the software I have exported the model from)  with the
> "Milky" that I have created in the Povray on the numerous of elements.
> To make it straightforward:
> 1.How to replace one texture with the other one on the numerous of elements?
>
>
>
unless you're handy with regex pattern matching and can write a 
script/program to do it for you ... you will have to bite the bullet and 
hand edit


Post a reply to this message

From: rode
Subject: Re: <no subject>
Date: 1 Jul 2011 07:55:01
Message: <web.4e0db5506f92e856f58fe2c40@news.povray.org>
>then find all the occurrences of the original texture and replace
> them with texture { Milky }

that's exactly the point. Till now I have made it line by line (but it took me
hours and hours to replace just a few of the elements textures) also I have
tried FindReplace command but it doesn't work, is there a formula I can use for
such
action?


Post a reply to this message

From: Jim Holsenback
Subject: Re: <no subject>
Date: 1 Jul 2011 09:55:12
Message: <4e0dd1c0@news.povray.org>
On 07/01/2011 08:53 AM, rode wrote:
>> then find all the occurrences of the original texture and replace
>> them with texture { Milky }
>
> that's exactly the point. Till now I have made it line by line (but it took me
> hours and hours to replace just a few of the elements textures) also I have
> tried FindReplace command but it doesn't work, is there a formula I can use for
> such
> action?
>
>
try this ... find the 1st occurrence of the texture you want to replace 
in your exported model (include) file. Select the /entire/ texture 
statement and copy it into the copy & paste buffer, then paste that into 
the find or search for dialog, then in the replace portion of the dialog 
type texture {Milky} ... this worked in gedit (picked up invisible 
characters like newline \n, \t ...), I'm not using windows version and 
it's built-in editor, so I don't know if that will work


Post a reply to this message

From: Jaime Vives Piqueres
Subject: Re: <no subject>
Date: 1 Jul 2011 10:03:53
Message: <4e0dd3c9$1@news.povray.org>

> try this ... find the 1st occurrence of the texture you want to
> replace in your exported model (include) file. Select the /entire/
> texture statement and copy it into the copy & paste buffer, then
> paste that into the find or search for dialog, then in the replace
> portion of the dialog type texture {Milky} ... this worked in gedit
> (picked up invisible characters like newline \n, \t ...), I'm not
> using windows version and it's built-in editor, so I don't know if
> that will work

   That also works great for me with SciTE... which is available for
Windows too.

-- 
Jaime Vives Piqueres
		
La Persistencia de la Ignorancia
http://www.ignorancia.org


Post a reply to this message

From: Alain
Subject: Re: <no subject>
Date: 1 Jul 2011 12:34:41
Message: <4e0df721$1@news.povray.org>

> Hello Povray users!
> I have a quite annoying problem which I've been trying to figure out for the
> last
> month...please help. The thing is have exported model with given texture(and
> there are lots of elements with the same texture) the texture looks like that:
>
> texture
>     {
>      uv_mapping
>      pigment
>      {
>       color<0, 0, 0>
>       transmit 0.5
>       filter 1
>      }
>      finish
>      {
>       diffuse 1
>       ambient 0
>      }
>     }
>    }
> I have declared another texture:
>
> #declare Milky =
> texture{
>      pigment
>      {
>       rgbft<1, 1, 1, 0.4, 0.5>
>      }
>      finish
>      {
>       diffuse 1.5
>       ambient 0
>       specular 0.2
>       phong 0.4
>       roughness 0.1
>       reflection 0.05
>
>      }}
> And now the question is: HOW TO REPLACE THE EXPORTED TEXTURE WITH THE NEW ONE
> ON ALL THESE ELEMENTS??
>
>
>
>

If the texture is present as a texture block everywhere, you need to 
replace is with: texture{Milky} everywhere it's used.

Do a search in the exported file for "texture".
Then, you replace the content of the texture with "Milky".

You also can remove all texture and use this:

IF the exported file #declare the objects:
object{ExportedObjectName texture{Milky}}

Or, like this:
union{object{Object001}
	object{Object002}
...
	texture{Milky}
// Optional transforms
scale<1,1,1>
rotate<0,0,0>
translate<0,0,0>
}

IF you include the file to place the objects (there are NO #declare in 
the file):
union{
	#include "ExportedFile.inc"
	texture{Milky}
// Optional transforms
scale<1,1,1>
rotate<0,0,0>
translate<0,0,0>
}

If there is a #declare statement for it, you only need to change it's 
#declare to read as: #declare Texture=texture{Milky}




Alain


Post a reply to this message

From: rode
Subject: Re: <no subject>
Date: 2 Jul 2011 13:45:00
Message: <web.4e0f58d06f92e856f58fe2c40@news.povray.org>
Alain <aze### [at] qwertyorg> wrote:

> > Hello Povray users!
> > I have a quite annoying problem which I've been trying to figure out for the
> > last
> > month...please help. The thing is have exported model with given texture(and
> > there are lots of elements with the same texture) the texture looks like that:
> >
> > texture
> >     {
> >      uv_mapping
> >      pigment
> >      {
> >       color<0, 0, 0>
> >       transmit 0.5
> >       filter 1
> >      }
> >      finish
> >      {
> >       diffuse 1
> >       ambient 0
> >      }
> >     }
> >    }
> > I have declared another texture:
> >
> > #declare Milky =
> > texture{
> >      pigment
> >      {
> >       rgbft<1, 1, 1, 0.4, 0.5>
> >      }
> >      finish
> >      {
> >       diffuse 1.5
> >       ambient 0
> >       specular 0.2
> >       phong 0.4
> >       roughness 0.1
> >       reflection 0.05
> >
> >      }}
> > And now the question is: HOW TO REPLACE THE EXPORTED TEXTURE WITH THE NEW ONE
> > ON ALL THESE ELEMENTS??
> >
> >
> >
> >
>
> If the texture is present as a texture block everywhere, you need to
> replace is with: texture{Milky} everywhere it's used.
>
> Do a search in the exported file for "texture".
> Then, you replace the content of the texture with "Milky".
>
> You also can remove all texture and use this:
>
> IF the exported file #declare the objects:
> object{ExportedObjectName texture{Milky}}
>
> Or, like this:
> union{object{Object001}
>  object{Object002}
> ...
>  texture{Milky}
> // Optional transforms
> scale<1,1,1>
> rotate<0,0,0>
> translate<0,0,0>
> }
>
> IF you include the file to place the objects (there are NO #declare in
> the file):
> union{
>  #include "ExportedFile.inc"
>  texture{Milky}
> // Optional transforms
> scale<1,1,1>
> rotate<0,0,0>
> translate<0,0,0>
> }
>
> If there is a #declare statement for it, you only need to change it's
> #declare to read as: #declare Texture=texture{Milky}
>
>
>
>
> Alain

Alain thank you for your reply. Following your tips I have made something like
that (those are the initial lines from my scene):

#declare Milky =
texture{
    pigment
    {
     rgbft <1, 1, 1, 0.4, 0.5>
    }
    finish
    {
     diffuse 1.5
     ambient 0
     specular 0.2
     phong 0.4
     roughness 0.1
     reflection 0.05
    }}
#declare Texture=texture{Milky}

unfortunately it doesn't work (the elements keep their original texture) Did I
miss something?


Post a reply to this message

From: rode
Subject: Re: <no subject>
Date: 2 Jul 2011 14:15:01
Message: <web.4e0f5f776f92e856f58fe2c40@news.povray.org>
I've digged out through the Pov-ray help and found something like this

#ifdef (User_Thing)
  // This section is parsed if the
  // identifier "User_Thing" was
  // previously declared
  object{User_Thing} // invoke identifier
 #else
  // This section is parsed if the
  // identifier "User_Thing" was not
  // previously declared
  box{<0,0,0>,<1,1,1>} // use a default
 #end
  // End of conditional part

is it usefull for the textures replacement?


Post a reply to this message

Goto Latest 10 Messages Next 2 Messages >>>

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