POV-Ray : Newsgroups : povray.binaries.images : Stasis Cell(15k) Server Time
15 Aug 2024 04:22:07 EDT (-0400)
  Stasis Cell(15k) (Message 6 to 15 of 15)  
<<< Previous 5 Messages Goto Initial 10 Messages
From: Aaron Gillies
Subject: Re: Stasis Cell(15k)
Date: 25 Aug 2002 16:08:45
Message: <3d69394d$1@news.povray.org>
"Hugo" <hua### [at] post3teledk> wrote in message
news:3d693558$1@news.povray.org...

>
> This is my favourite part of the picture.
> Was it very slow? You used Pov3.5 ?
>

I thought it looked pretty cool too, although the camera is too far away
to see much of the detail.  I've never actually gotten media to do what
I want at all, much less this. :)

Aaron


Post a reply to this message

From: Ben Lauritzen
Subject: Re: Stasis Cell(15k)
Date: 26 Aug 2002 09:03:30
Message: <3d6a2722$1@news.povray.org>
> > the media under the cell, above the base is a
> > combo of emission and glows.
>
> This is my favourite part of the picture.
> Was it very slow? You used Pov3.5 ?

Actually, render time was about 30 seconds.  I was using megapov so the
glows aren't actually media, but as for versions, I was using 3.5, and MP
v0.7.  Also, I'm on a beefed up athlon xp 1700 mhz system so that might have
had something to do with render times ;)


Post a reply to this message

From: Ben Lauritzen
Subject: Re: Stasis Cell(15k)
Date: 26 Aug 2002 09:12:32
Message: <3d6a2940$1@news.povray.org>
> > Something I put together in about an hour today, creating this for a
> > website... Loosely based off of the starcraft stasis cell.
> >
> > This actually isn't related to Timothy's WIP, just my own little thing.
> >
> > Any suggestions?
>
> Make it shiney, and gold, and the media more cyan...
>
> and you need one of those zerg/protoss hybrids inside...;)

Yeah, wouldn't it be nice if I could model organics?

I always did wonder though if Blizzard was going to make SC2 with those
creatures.


Post a reply to this message

From: Ben Lauritzen
Subject: Re: Stasis Cell(15k)
Date: 26 Aug 2002 10:30:06
Message: <3d6a3b6e@news.povray.org>
I'm satisfied with it for now...  Does anyone know how to set
transparencies, such as 50% transparency, in fireworks or photoshop?  I want
a picture under this to show through if possible.


Post a reply to this message


Attachments:
Download 'stasis.jpg' (11 KB)

Preview of image 'stasis.jpg'
stasis.jpg


 

From: Ben Lauritzen
Subject: Re: Stasis Cell(15k)
Date: 26 Aug 2002 10:43:38
Message: <3d6a3e9a@news.povray.org>
cone{
  <0,-2,0>,.4,<0,0,0>,1.05
  material{
    texture{
      pigment{
        rgbt 1
      }
    }
    interior{
      media{
        emission rgb<.5,.6,.55>*.5
      }
    }
  }
  hollow
}
$iNum=0;
$R=seed(63258882);
$rmax=600;
#while (iNum < rmax)
  $rad=.3+((iNum/rmax)*.6);
  $pos=<rad*rand(R),-2+((iNum/rmax)*1.8),0>;
  glow {
    type 0
    location pos
    size .001
    radius .5
    fade_power 1.2
    color <.3, .5, .4>
    rotate<0,360*rand(R),0>
  }
  $iNum=iNum+1;
#end


Post a reply to this message


Attachments:
Download 'Glows.jpg' (18 KB)

Preview of image 'Glows.jpg'
Glows.jpg


 

From: Pandora
Subject: Re: Stasis Cell(15k)
Date: 26 Aug 2002 11:21:39
Message: <3d6a4783@news.povray.org>
"Ben Lauritzen" <Loo### [at] austinrrcom> wrote in message
news:3d6a3b6e@news.povray.org...
> I'm satisfied with it for now...  Does anyone know how to set
> transparencies, such as 50% transparency, in fireworks or photoshop?  I
want
> a picture under this to show through if possible.
>

    You can get POV to render the background as transparent. Put
Output_Alpha=true into your POVRAY.INI or use the +UA command line
parameter. Oh, and you'll need to use an output file format that supports
transparency (.png or .tga) - this can be set, again in POVRAY.INI, using
Output_File_Type=N for .png or =T for .tga, or use the command line
parameters +FN (.png) or +FT (.tga)...
    See section 5.2.2.3.1 of the POV help file for more info on output file
types and transparency...

    Oh, and I've never tried this, but my guess would be, if you want, say,
50% transparency you could put background { colour rgbt <1,1,1,0.5> } in
your scene file... Can anyone confirm that ??

--
Pandora/Scott Hill/[::O:M:C::]Scorpion
Software Engineer.
http://www.pandora-software.com


Post a reply to this message

From: Ben Lauritzen
Subject: Re: Stasis Cell(15k)
Date: 26 Aug 2002 16:21:52
Message: <3d6a8de0$1@news.povray.org>
>     You can get POV to render the background as transparent. Put
> Output_Alpha=true into your POVRAY.INI or use the +UA command line
> parameter. Oh, and you'll need to use an output file format that supports
> transparency (.png or .tga) - this can be set, again in POVRAY.INI, using
> Output_File_Type=N for .png or =T for .tga, or use the command line
> parameters +FN (.png) or +FT (.tga)...
>     See section 5.2.2.3.1 of the POV help file for more info on output
file
> types and transparency...
>
>     Oh, and I've never tried this, but my guess would be, if you want,
say,
> 50% transparency you could put background { colour rgbt <1,1,1,0.5> } in
> your scene file... Can anyone confirm that ??

ah sweet, it works...  thanks


Post a reply to this message

From: Ben Lauritzen
Subject: Re: Stasis Cell(15k)
Date: 26 Aug 2002 16:36:18
Message: <3d6a9142$1@news.povray.org>
Ok, well it works for 100% and nothing else... hmm


Post a reply to this message

From: hughes b
Subject: Re: Stasis Cell(15k)
Date: 26 Aug 2002 18:02:37
Message: <3d6aa57d@news.povray.org>
"Ben Lauritzen" <Loo### [at] austinrrcom> wrote in message
news:3d6a9142$1@news.povray.org...
> Ok, well it works for 100% and nothing else... hmm

background essentially doesn't exist, I guess you could say. It's not a
object so maybe that's the logic. So the obvious: putting a backdrop plane
is a possible workaround. Use pigment {rgbt 0.5}, rgbf includes the color
value in the transparency and so isn't reliable for exact percentage. You'll
also need to set finish {ambient 0 diffuse 0} to prevent any color intensity
shifts due to light sources shining onto it.

Oh yeah, I like that stasis chamber too. Needs a squid-like creature inside
;-) Also some erratic electrical arcs crossing from the bottom unit to the
upper just for effect.


Post a reply to this message

From: Ben Lauritzen
Subject: Re: Stasis Cell(15k)
Date: 26 Aug 2002 19:46:34
Message: <3d6abdda$1@news.povray.org>
> background essentially doesn't exist, I guess you could say. It's not a
> object so maybe that's the logic. So the obvious: putting a backdrop plane
> is a possible workaround. Use pigment {rgbt 0.5}, rgbf includes the color
> value in the transparency and so isn't reliable for exact percentage.
You'll
> also need to set finish {ambient 0 diffuse 0} to prevent any color
intensity
> shifts due to light sources shining onto it.

Now, that doesn't work either.  It just turns out dark grey... but I finally
got the effect I wanted by cutting it into pieces in photoshop and setting
opacity on the layers.


Post a reply to this message

<<< Previous 5 Messages Goto Initial 10 Messages

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