|
|
1 What does WIP mean?
2 How can I make this goblet (OK, it's just a cup now, but I'm learning)
look more like polished silver? BTW, the red thing is the beginnings of the
wine decanter.
Thanks,
Hershel
Code:
#declare Cam3 = camera { location<0,12,-20>
look_at <0,5,0>}
camera{Cam3}
light_source{<-10,15,-10> color White}
///////////////////////////////////////////////////
// gobliet
///////////////////////////////////////////////////
difference {
cone{< 0, 0.1, 0>, 2, < 0, 5, 0>, 2.5}
cone{< 0, .5, 0>, 1.9, < 0, 5.1, 0>, 2.4
// pigment { color Gold }
}
pigment { color Silver }
texture { Silver_Metal }
finish { metallic
// phong 1
// phong_size 11
// metallic
diffuse 11
ambient 0.2
// specular .9
// roughness .001
// reflection .1
// brilliance 3
}
translate 3*x
}
///////////////////////////////////////////////////
// table
///////////////////////////////////////////////////
#include "stones1.inc"
box {<-15,-14,-4>, <15,0,10>
// pigment {color White}
texture { White_Marble }
finish { diffuse 2 }
}
///////////////////////////////////////////////////
// background
///////////////////////////////////////////////////
plane { y, -10
pigment { color Blue * .5 }
}
///////////////////////////////////////////////////
// decanter
///////////////////////////////////////////////////
blob {
threshold .65
sphere { <0,4.5,0>, 8, 1 }
cylinder { <0,7,0>, <0,13,0>, 1, 1 }
pigment { color Red * .5 }
finish { diffuse 2 }
translate -5*x
}
Post a reply to this message
|
|
|
|
Hershel Robinson <her### [at] yahoocom> wrote:
: 1 What does WIP mean?
From www.acronymfinder.com:
WIP
War-Fighting Improvement Plan
WIP
Weapon Impact Point
WIP
Weapons Installation Plan
WIP
Westchester Insurance Professionals
WIP
Wireless Internet Protocol
WIP
Work In Place/Progress
WIP
Work in Process
Choose your preferred meaning... ;)
--
#macro N(D,I)#if(I<6)cylinder{M()#local D[I]=div(D[I],104);M().5,2pigment{
rgb M()}}N(D,(D[I]>99?I:I+1))#end#end#macro M()<mod(D[I],13)-6,mod(div(D[I
],13),8)-3,10>#end blob{N(array[6]{11117333955,
7382340,3358,3900569407,970,4254934330},0)}// - Warp -
Post a reply to this message
|
|
|
|
Hershel Robinson wrote:
>
> 1 What does WIP mean?
... i just saw Warp gave a much more complete answer... ;-)
>
> 2 How can I make this goblet (OK, it's just a cup now, but I'm learning)
> look more like polished silver? BTW, the red thing is the beginnings of the
> wine decanter.
>
For metal textures you can have a look at the standard include file
'metals.inc'
For the finish in general you should:
- keep ambient and diffuse low
- use specular highlights with roughness according to purpose
- use reflection (and most important some environment to reflect)
- use metallic for coloring highlights.
Christoph
--
Christoph Hormann <chr### [at] gmxde>
IsoWood include, radiosity tutorial, TransSkin and other
things on: http://www.schunter.etc.tu-bs.de/~chris/
Post a reply to this message
|
|