|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I decided to render a wallpaper version of my Coffee's On CGSphere entry.
I fixed the switch and added some coffee stains (pot and burner are still
relatively new and clean...)
Also find it at my deviantART gallery:
http://www.deviantart.com/deviation/59992168/
-tgq
Post a reply to this message
Attachments:
Download 'coffee's on - wp.jpg' (267 KB)
Preview of image 'coffee's on - wp.jpg'
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Trevor G Quayle" <Tin### [at] hotmailcom> wrote:
I have nothing to say but that it is photorealistic!!! congratulations, very
impressive.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Trevor G Quayle" <Tin### [at] hotmailcom> wrote:
> I decided to render a wallpaper version of my Coffee's On CGSphere entry.
>
AWSOME!!
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Trevor G Quayle" <Tin### [at] hotmailcom> wrote:
> I decided to render a wallpaper version of my Coffee's On CGSphere entry.
>
It's on my desktop. Thank you!
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Mike the Elder" <zer### [at] wyanorg> wrote:
> "Trevor G Quayle" <Tin### [at] hotmailcom> wrote:
> > I decided to render a wallpaper version of my Coffee's On CGSphere entry.
> >
> It's on my desktop. Thank you!
Thanks! No problem.
-tgq
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"kike" <dry### [at] hotmailcom> wrote:
> "Trevor G Quayle" <Tin### [at] hotmailcom> wrote:
>
> I have nothing to say but that it is photorealistic!!! congratulations, very
> impressive.
Thank you.
-tgq
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Funn is going to be very happy with this free advertisement :-)
Excellent work indeed!!!
Thomas
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Hey Trevor,
How did you make the coffee stains?
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Kyle <hob### [at] gatenet> wrote:
> Hey Trevor,
>
> How did you make the coffee stains?
It is just a simple cylidrical-based pigment function. I map it to a disc
object and place it very slightly above the surface of the base object. I
could put it directly into an object's material, but it is easier to work
with this way.
Actually the most difficult part was getting the right colouration. I ended
up having to use both transmit and filter to get what I thought looks right.
First time I've used both...
See code below. Coffee cup ring is similar, with appropriate colour
mapping. You can also play with the turbulence and scaling factor to get
various efffects.
-tgq
//CODE
//START
#declare CDRND=seed(0);
#macro CDrop(SIZ)
disc{0,y,1.0
#local YT=1000*rand(CDRND);
#local YR=360*rand(CDRND);
pigment{
cylindrical
pigment_map{
[0.145 rgbt 1]
[0.15 rgbft <0.5,0.3,0.1,0.1,0.1>]
[0.25 spotted
colour_map{
[0 rgbft <0.5,0.3,0.1,0.50,0.50>]
[1 rgbft <0.5,0.3,0.1,0.30,0.70>]
}
scale 0.1
]
}
warp{black_hole <0.8,-YT,0>,0.75 inverse strength 1}//creates thickened
spot on edge
#declare SCL=30;
scale SCL
warp {
turbulence 0.25
octaves 2
lambda 1
omega 0.75
}
scale 1/SCL
warp{turbulence 0.1}
translate y*YT
rotate y*YR
}
finish{
ambient 0
diffuse 0.6
conserve_energy
}
scale SIZ
translate -y*39.9
}
#end
//END
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Technically awesome. Love the composition too. Reminds me
thematically of some early Celmins:
http://www.artmag.com/museums/a_spain/aspmaso/celmins/celmins.jpg
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |