POV-Ray : Newsgroups : povray.binaries.images : Droid w/ Scooter. Server Time
2 Oct 2024 10:18:39 EDT (-0400)
  Droid w/ Scooter. (Message 1 to 7 of 7)  
From: Moon47
Subject: Droid w/ Scooter.
Date: 20 May 2000 21:06:26
Message: <3925E7D4.5292ADC2@earthlink.net>
Finished product w/ out background...
Will start on other vehicles and weapons for the fleet as soon as i get
the movie again...


Post a reply to this message


Attachments:
Download 'droid.jpg' (14 KB)

Preview of image 'droid.jpg'
droid.jpg


 

From: Tor Olav Kristensen
Subject: Re: Droid w/ Scooter.
Date: 20 May 2000 21:27:27
Message: <39273AB3.5CD63E4C@hotmail.com>
Moon47 wrote:
> 
> Finished product w/ out background...
> Will start on other vehicles and weapons for the fleet as soon as i get
> the movie again...

Oooi !

Just incredible.
 
The green glasses makes it look really cool.

I'm amazed how you people manage to come up with 
stuff like this.
I don't have enough fantasy to make such shapes and
characters.

Are you hand coding this ?


Tor Olav
--
mailto:tor### [at] hotmailcom
http://www.crosswinds.net/~tok/tokrays.html


Post a reply to this message

From: Moon47
Subject: Re: Droid w/ Scooter.
Date: 20 May 2000 22:07:30
Message: <3925F62A.43D36A16@earthlink.net>
Thank you i personally envy your mathematical looking images... I have a
good grasp on math but when it comes to implementing it to a 3D image i am
lost...
BTW, How did you make the back ground in your previous Torus Clutter image ?

I would love to use something like that in my final render with all the
droids ready to attack in ranks...
Yes hand code...
I don't have much else of a choice, on the Mac there are very few GOOD
modeler programs... :(
Imagination helps but so does a grasp of the matrix key word...
This image was modeled from pictures and a old flier i have of the droids
from "Episode One" so actually lucas films did all the work jus took the
time to try it myself... And it was worth it...
The blue visor was my idea i could not get the eye sockets in the right
place...

Im babbling...

Tor Olav Kristensen wrote:

> Moon47 wrote:
> >
> > Finished product w/ out background...
> > Will start on other vehicles and weapons for the fleet as soon as i get
> > the movie again...
>
> Oooi !
>
> Just incredible.
>
> The green glasses makes it look really cool.
>
> I'm amazed how you people manage to come up with
> stuff like this.
> I don't have enough fantasy to make such shapes and
> characters.
>
> Are you hand coding this ?
>
> Tor Olav
> --
> mailto:tor### [at] hotmailcom
> http://www.crosswinds.net/~tok/tokrays.html


Post a reply to this message

From: Moon47
Subject: Re: Droid w/ Scooter.
Date: 21 May 2000 13:19:56
Message: <3926CC07.4F024DCC@earthlink.net>
What is the date and title i will look up the post...

Serge LAROCQUE wrote:

> I just had a look in moray.binaries and the author of the Armoured Assault Tank
> is equiprawn.


Post a reply to this message

From: Moon47
Subject: Re: Droid w/ Scooter.
Date: 21 May 2000 13:32:12
Message: <3926CEE7.287AACE5@earthlink.net>
Oh I found it... Quite nice i will credit you for finding it and credit the author
if/when i get a chance to use it... Thanks... :)

Moon47 wrote:

> What is the date and title i will look up the post...
>
> Serge LAROCQUE wrote:
>
> > I just had a look in moray.binaries and the author of the Armoured Assault Tank
> > is equiprawn.


Post a reply to this message

From: Tor Olav Kristensen
Subject: Re: Droid w/ Scooter.
Date: 21 May 2000 19:31:19
Message: <392870CD.B59C3B28@hotmail.com>
Moon47 wrote:
> 
> Thank you i personally envy your mathematical looking images... I have a
> good grasp on math but when it comes to implementing it to a 3D image i am
> lost...
> BTW, How did you make the back ground in your previous Torus Clutter image ?

I'll post the code for that as soon as I get to my PC at work.

> I would love to use something like that in my final render with all the
> droids ready to attack in ranks...

Looking forward to see that !

> Yes hand code...
> I don't have much else of a choice, on the Mac there are very few GOOD
> modeler programs... :(

Even if I have a PC, I never use them myself either.
(But I see that in some cases a good modeller program can come in
handy.)

> Imagination helps but so does a grasp of the matrix key word...
> This image was modeled from pictures and a old flier i have of the droids
> from "Episode One" so actually lucas films did all the work jus took the
> time to try it myself... And it was worth it...
> The blue visor was my idea i could not get the eye sockets in the right
> place...

I'll just have to watch that movie once more...

Tor Olav
--
mailto:tor### [at] hotmailcom
http://www.crosswinds.net/~tok/tokrays.html


Post a reply to this message

From: Tor Olav Kristensen
Subject: Re: Droid w/ Scooter.
Date: 22 May 2000 11:12:25
Message: <39294E16.7B9F4C55@online.no>
Tor Olav Kristensen wrote:

> Moon47 wrote:
> > BTW, How did you make the back ground in your previous Torus Clutter image ?
>
> I'll post the code for that as soon as I get to my PC at work.

See code below.

(Note that the camera is inside a sphere.)


Regards,

Tor Olav
--
mailto:tor### [at] hotmailcom
http://www.crosswinds.net/~tok/tokrays.html


#version 3.1;
#include "colors.inc"

sphere {
  0, 200
  texture {
    normal {
      granite
      turbulence 1/21
      frequency 1
      octaves 2
      omega 0.2
      lambda 0.1
    }
    pigment {
      granite
      color_map {
        [0.0 color Black]
        [0.5 color Red/1.5 ]
        [1.0 color Yellow ]
      }
      turbulence 1/21
      frequency 1
      octaves 2
      omega 0.2
      lambda 0.1
    }
    finish {
      specular 0.1
    }
    scale 198
    rotate 60*y
  }
}

light_source {
  <-12.6, 9.4, 3.1>
  color White*1.2
}

camera {
  location 16*<1, 1, 1>
  look_at -1.5*y
  angle 55
}


Post a reply to this message

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