POV-Ray : Newsgroups : povray.binaries.images : Pov-Bouf Bellevile saterday 23 -16h30 Server Time
14 Aug 2024 07:17:45 EDT (-0400)
  Pov-Bouf Bellevile saterday 23 -16h30 (Message 1 to 9 of 9)  
From: Martial
Subject: Pov-Bouf Bellevile saterday 23 -16h30
Date: 2 Dec 2002 18:00:50
Message: <3debe622@news.povray.org>
a new image 
http://povwip.tuxfamily.org/img/povray44.png20021202102353.png

and  news photos !
http://pov.monde.free.fr/index.php3?page=pm-povgars2002
To know which is present on photos, select the colour text 
of the bottom which is below photos.

--
Martial


Post a reply to this message

From: BertM
Subject: Re: Pov-Bouf Bellevile saterday 23 -16h30
Date: 4 Dec 2002 07:35:04
Message: <web.3dedf563b2b4eaa4f0025260@news.povray.org>
Martial wrote:
>a new image
>http://povwip.tuxfamily.org/img/povray44.png20021202102353.png
>
>and  news photos !
>http://pov.monde.free.fr/index.php3?page=pm-povgars2002
>To know which is present on photos, select the colour text
>of the bottom which is below photos.
>
>--
>Martial
>
Like the picture very much.
Can you share with us how you made the "Heineken" Mugmat ?

Bert


Post a reply to this message

From: Martial
Subject: Re: Pov-Bouf Bellevile saterday 23 -16h30
Date: 4 Dec 2002 12:41:20
Message: <3dee3e40$1@news.povray.org>
> Like the picture very much. 

Thanks ...

> Can you share with us how you made the "Heineken" Mugmat ?

Simple Image_map :) 
find on 
http://images.google.fr/images?q=heineken&ie=UTF-8&oe=UTF-8&hl=fr

the image_map 
http://almatybeer.narod.ru/images/cards/heineken.jpg
or 
http://www.nubo.ru/coaster/inter/holland/heineken.jpg

Make the transparent tour in a logisiel of drawing, Gimp, PSP, or .. ?
the image_bump is the same in 256 gray color 


#declare T_Heineken=texture{
    pigment{image_map{png "map\heinekenlogo"  } }
    normal{bump_map {png "map\heinekenlogobumps"} bump_size 2 }
    finish{ambient .4 diffuse .6}
}

#declare Mugmat=
box{<0,0,0><1,1,0.01> 
   texture {T_Heineken}
     scale .6
     rotate x*90
     rotate y*110
}

--
Martial


Post a reply to this message

From: BertM
Subject: Re: Pov-Bouf Bellevile saterday 23 -16h30
Date: 6 Dec 2002 06:00:08
Message: <web.3df0824bb2b4eaa4f0025260@news.povray.org>
Martial wrote:
>> Like the picture very much.
>
>Thanks ...
>
>> Can you share with us how you made the "Heineken" Mugmat ?
>
>Simple Image_map :)
>find on
>http://images.google.fr/images?q=heineken&ie=UTF-8&oe=UTF-8&hl=fr
>
>the image_map
>http://almatybeer.narod.ru/images/cards/heineken.jpg
>or
>http://www.nubo.ru/coaster/inter/holland/heineken.jpg
>
>Make the transparent tour in a logisiel of drawing, Gimp, PSP, or .. ?
>the image_bump is the same in 256 gray color
>
>
>#declare T_Heineken=texture{
>    pigment{image_map{png "map\heinekenlogo"  } }
>    normal{bump_map {png "map\heinekenlogobumps"} bump_size 2 }
>    finish{ambient .4 diffuse .6}
>}
>
>#declare Mugmat=
>box{<0,0,0><1,1,0.01>
>   texture {T_Heineken}
>     scale .6
>     rotate x*90
>     rotate y*110
>}
>
>--
>Martial
>


Thanks, its in the bumpmap, ill play with it a bit.

While looking again at you picture, i notiched something strange.
The beerglass is placed half on the mugmap, if i place my beer like that i
always get my paints wet.

Bert


Post a reply to this message

From: Martial
Subject: Re: Pov-Bouf Bellevile saterday 23 -16h30
Date: 6 Dec 2002 06:47:50
Message: <3df08e66@news.povray.org>
> While looking again at you picture, i notiched something strange.
> The beerglass is placed half on the mugmap, if i place my beer like that i
> always get my paints wet.

My material for the beerglass

/*-------------------------------MATERIALS-*/

#declare Mat_VerreBiere=
    material {
            texture {
                pigment{color  rgbt<1,1,1,1>}
                finish{specular .5 roughness 0.001  ambient .0 diffuse .0}
            }
              interior {ior 1.5
                   fade_distance .1 fade_power 2
                   fade_color rgb <0.9, 1.0, 0.95>*.8
                   media { absorption .2  samples 1,1 method 3   }
        }
    }

/*------------------------------BEERGLASS-*/
#declare GlassBeer =
lathe{
 cubic_spline
 14,
 <0.003207,-0.003207>,
 <0.000000,0.017639>,
 <0.093006,0.019243>,
 <0.240532,0.009621>,
 <0.359195,0.008018>,
 <0.299864,0.117059>,
 <0.315899,0.198840>,
 <0.279018,0.352781>,
 <0.381645,0.922041>,
 <0.352781,0.922041>,
 <0.197237,0.242136>,
 <0.131491,0.107438>,
 <0.000000,0.093006>,
 <0.000000,0.099420>

 material {Mat_VerreBiere}
    translate y*0.001
    photons {
        target .1
        refraction on
        reflection on
}
    hollow
}
/*----------------------------------------------------*/
object{GlassBeer translate <where, you, want>}

/*----------------------------GLOBAL_SETTINGS*/
global_settings{
   max_trace_level 100
    photons {
        spacing .01
         gather 1,100
           }
}
/******************************************/


Post a reply to this message

From: Marc Jacquier
Subject: Re: Pov-Bouf Bellevile saterday 23 -16h30
Date: 6 Dec 2002 07:10:54
Message: <3df093ce@news.povray.org>

web.3df0824bb2b4eaa4f0025260@news.povray.org...
> While looking again at you picture, i notiched something strange.
> The beerglass is placed half on the mugmap, if i place my beer like that i
> always get my paints wet.
>


Lol, now Martial will know why he doesn't like beer :c)
Err you meant pants didn't you?
Marc


Post a reply to this message

From: Martial
Subject: Re: Pov-Bouf Bellevile saterday 23 -16h30
Date: 6 Dec 2002 11:05:17
Message: <3df0cabd@news.povray.org>
"Marc Jacquier"  Said :
> Lol, now Martial will know why he doesn't like beer :c)
> Err you meant pants didn't you?

Voila pourquoi !
That's why! Thank you Marc!

burp !


Post a reply to this message

From: Bert Muijtstege
Subject: Re: Pov-Bouf Bellevile saterday 23 -16h30
Date: 6 Dec 2002 14:16:17
Message: <3df0f781@news.povray.org>
"Marc Jacquier" <jac### [at] wanadoofr> schreef in bericht
news:3df093ce@news.povray.org...
>

> web.3df0824bb2b4eaa4f0025260@news.povray.org...
> > While looking again at you picture, i notiched something strange.
> > The beerglass is placed half on the mugmap, if i place my beer like that
i
> > always get my paints wet.
> >
>
>
> Lol, now Martial will know why he doesn't like beer :c)
> Err you meant pants didn't you?
> Marc
>

Yes, i mean pants, Excusez moi

Martial, look at the attachments, you know what i mean.
In this way the beerglass will fall, i did not mean i wanted the code, but
merci
My French is a little poor, all i know is what i use for my vacations in the
Haute Alps.


Post a reply to this message


Attachments:
Download 'beer2.jpg' (5 KB) Download 'beer1.jpg' (7 KB)

Preview of image 'beer2.jpg'
beer2.jpg

Preview of image 'beer1.jpg'
beer1.jpg


 

From: Martial
Subject: Re: Pov-Bouf Bellevile saterday 23 -16h30
Date: 6 Dec 2002 16:53:59
Message: <3df11c77$1@news.povray.org>
> Martial, look at the attachments, you know what i mean.
> In this way the beerglass will fall, i did not mean i wanted the code, but
> merci
> My French is a little poor, all i know is what i use for my vacations in
the
> Haute Alps.

give the code !

--
Martial


Post a reply to this message

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