POV-Ray : Newsgroups : povray.binaries.images : Quiz Server Time
2 Oct 2024 14:13:41 EDT (-0400)
  Quiz (Message 8 to 17 of 17)  
<<< Previous 7 Messages Goto Initial 10 Messages
From: Mike Weber
Subject: Re: Quiz
Date: 10 May 2000 11:58:39
Message: <3919872f$1@news.povray.org>
or... a computer?

--
Mike

wk: mik### [at] pyxiscom  www.pyxis.com
hm: mwe### [at] sciticom  www.geocities.com/mikepweber


"Markus Becker" <mar### [at] studentuni-siegende> wrote in message
news:391### [at] studentuni-siegende...
> Warp wrote:
> >
> >   Guess how these images have been made (answers in reply):
>
> With a raytracer perhaps?
>
> SCNR
>
> Markus


Post a reply to this message

From: Henry
Subject: Re: Quiz
Date: 10 May 2000 12:15:46
Message: <htp-5B7363.01453911052000@news.povray.org>
Warp,

Thanks for that - much appreciated!

I don't know about anyone else, but my brain is extremely receptive to 
the "simple example, then code" method of teaching, and those three 
examples were right on the mark.

Anyone know of a website out there which has more of this sort of stuff, 
presented in this fashion?

I checked your VFAQ which pointed to:
  http://www.povray.org/links/
         POV-Ray_Include_Macro_and_Object_Files/
         Object_and_Scene_Files/
...but decriptions like "POV-Ray scene files and objects -Misc" doesn't 
really do much to inspire _my_ imagination.

A two-column table.  Simple image on the left, code snippet on the 
right.  That's all I'm after.

Thanks again.

Henry.


Post a reply to this message

From: Chris Huff
Subject: Re: Quiz
Date: 10 May 2000 16:35:49
Message: <chrishuff_99-7456EB.15391010052000@news.povray.org>
In article <39196fa1@news.povray.org>, Warp <war### [at] tagpovrayorg> 
wrote:

>   Yes: Laziness.
> 
> It was easier than calculating sqrt(.75^2+.5^2) = .9013878188 and 
> putting that (inaccurate) result there.

I wouldn't call it laziness, I would say it is good style. It allows you 
to easily change the code later for different parameters, and there 
isn't any reason not to use an available function for it's intended 
purpose.
Oh, and in MegaPOV, "sqrt(0.75^2 + 0.5^2)" would work just fine(the ^ 
operator has been added), and you could use "sqrt(pow(0.75, 2) + 
pow(0.5, 2))" in official POV.

-- 
Christopher James Huff - Personal e-mail: chr### [at] yahoocom
TAG(Technical Assistance Group) e-mail: chr### [at] tagpovrayorg
Personal Web page: http://chrishuff.dhs.org/
TAG Web page: http://tag.povray.org/


Post a reply to this message

From: David Fontaine
Subject: Re: Quiz
Date: 10 May 2000 22:44:16
Message: <391A1DC6.2D240@faricy.net>
1) Intersecting cylinders
2) Rotating torii
3) Rotating cylinders (and it's a hyperbola BTW :-p)
And I haven't read any replies yet

--
David Fontaine     <dav### [at] faricynet>     ICQ 55354965
Please visit my website: http://www.faricy.net/~davidf/


Post a reply to this message

From: Warp
Subject: Re: Quiz
Date: 11 May 2000 06:31:00
Message: <391a8be3@news.povray.org>
This one is cool.
  (And this time you'll have to figure out the code yourself):


Post a reply to this message


Attachments:
Download 'image.jpg' (36 KB)

Preview of image 'image.jpg'
image.jpg


 

From: Gail Shaw
Subject: Re: Quiz
Date: 11 May 2000 07:57:19
Message: <391aa01f@news.povray.org>
Warp wrote in message <391a8be3@news.povray.org>...
>  This one is cool.
>  (And this time you'll have to figure out the code yourself):
>


torii, centered just to one side of the centre of that object,
rotated and translated around.

Gail
********************************************************************
* gsh### [at] monotixcoza              * Reality.dat not found         *
* http://www.rucus.ru.ac.za/~gail/ * Attempting to reboot universe *
********************************************************************
* The best way to accelerate Windows NT is at 9.8 m/s^2      *
********************************************************************


Post a reply to this message

From: Tor Olav Kristensen
Subject: Re: Quiz
Date: 11 May 2000 08:08:19
Message: <391AA2AD.991F4EC3@online.no>
Warp wrote:

>   This one is cool.

Yes.I think so too.

>   (And this time you'll have to figure out the code yourself):

It looks familiar. Heres how I did it:

#declare MajR = 5;
#declare MinR = 1.5;

#declare SmallTorus = torus { MajR, 0.25 }
#declare TVector = MajR*y + MinR*z;
#declare TVector = TVector - 2.5*y; // Remove this line to get a proper torus

#declare TiltedTorus = vtilt(SmallTorus, TVector)

object {
  CircleSpread(TiltedTorus, MinR, 24)
  pigment { color Green }
}

(See below for the rest of my code.)

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


#macro VectorAngles(Vector)

  <acos(vnormalize((x+z)*Vector).x)*(Vector.z < 0 ? -1 : 1),
   acos(vnormalize(Vector).y),
   0>

#end // macro VectorAngles


#macro vtilt(Thing, TVector)

  #local RotateAngles = VectorAngles(TVector);

  object {
    Thing
    rotate  degrees(RotateAngles.x)*y
    rotate -degrees(RotateAngles.y)*z
    rotate -degrees(RotateAngles.x)*y
  }

#end // macro vtilt


#macro CircleSpread(Thing, Radius, Nr)

  #local deg = 360/Nr;
  #local MaxCnt = int(Nr);
  #local Cnt = 0;

  merge {
    #while (Cnt < MaxCnt)
      object {
        Thing
        translate Radius*x
        rotate  Cnt*deg*y
      }
      #local Cnt = Cnt + 1;
    #end // while
  }

#end // macro CircleSpread

// ====================================================

#declare MajR = 5;
#declare MinR = 1.5;

#declare SmallTorus = torus { MajR, 0.25 }
#declare TVector = MajR*y + MinR*z;
#declare TVector = TVector - 2.5*y; // Remove this line to get a proper torus

#declare TiltedTprus = vtilt(SmallTorus, TVector)

object {
  CircleSpread(TiltedTprus, MinR, 24)
  pigment { color Green }
}

/*
torus {
  MajR, MinR
  pigment { color Red }
}
*/


Post a reply to this message

From: Warp
Subject: Re: Quiz
Date: 11 May 2000 08:59:43
Message: <391aaebe@news.povray.org>
Actually it's a bit simpler:

union
{ #declare Angle=0;
  #while(Angle<360)
    torus { 1,.04 rotate z*30 translate z*.25 rotate y*Angle }
    #declare Angle=Angle+15;
  #end
}

-- 
main(i,_){for(_?--i,main(i+2,"FhhQHFIJD|FQTITFN]zRFHhhTBFHhhTBFysdB"[i]
):5;i&&_>1;printf("%s",_-70?_&1?"[]":" ":(_=0,"\n")),_/=2);} /*- Warp -*/


Post a reply to this message

From: Tor Olav Kristensen
Subject: Re: Quiz
Date: 11 May 2000 18:42:08
Message: <391B3738.DD8C695A@online.no>
Warp wrote:

>   Actually it's a bit simpler:
>
> union
> { #declare Angle=0;
>   #while(Angle<360)
>     torus { 1,.04 rotate z*30 translate z*.25 rotate y*Angle }
>     #declare Angle=Angle+15;
>   #end
> }

I knew that it could be done that way.

But I did it my way! =)

Since I'm lazy when it comes to laborious math calculations,
I first defined the important parameters and then let the
macros (which I already had) do the calculations.

And btw:
How would you for instance calculate the dimensions of the
bounded_by shapes if you where to model shapes like the one
I posted in TorusClutter?

For that TorusCluster it was just:

bounded_by { torus { MajR, MinR1 + MinR2 } }
for the "first" level and
bounded_by { torus { MajR, MinR1 + MinR2 + MinR3 } }
for the "second" level

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


Post a reply to this message

From: Anton Sherwood
Subject: Re: Quiz
Date: 29 Jul 2001 02:25:26
Message: <3B63AD18.85331C3F@pobox.com>
Warp wrote:
> 
>   Actually it's a bit simpler:
> 
> union
> { #declare Angle=0;
>   #while(Angle<360)
>     torus { 1,.04 rotate z*30 translate z*.25 rotate y*Angle }
>     #declare Angle=Angle+15;
>   #end
> }


Slightly simpler: change the relevant line to
torus { 1, 0.04 translate x*0.25 rotate <30,Angle,0> }

-- 
Anton Sherwood  --  br0### [at] p0b0xcom  --  http://ogre.nu/


Post a reply to this message

<<< Previous 7 Messages Goto Initial 10 Messages

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