POV-Ray : Newsgroups : povray.binaries.images : Torus that Once was Twisted (22KB) Server Time
29 Apr 2024 00:19:59 EDT (-0400)
  Torus that Once was Twisted (22KB) (Message 1 to 10 of 14)  
Goto Latest 10 Messages Next 4 Messages >>>
From: Tor Olav Kristensen
Subject: Torus that Once was Twisted (22KB)
Date: 3 Jul 2000 20:15:36
Message: <39612C37.C12B213B@online.no>
Earlier today I messed around a little 
bit with Peter Popov's code for
"one of those twisted thingies" 

And from his code I learned something 
that some (or many ?) of you others 
probably already knew:

Components in a Blob can be Scaled and 
Transformed individually !

Very useful !  Thank you Peter.


This is one of the images that came out.

(I rendered it a little to dark, so 
instead of waiting for another 4 hours
rendering, I adjusted the tonal balance 
a little bit.)


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


Post a reply to this message


Attachments:
Download 'twistedtorus02.jpg' (22 KB)

Preview of image 'twistedtorus02.jpg'
twistedtorus02.jpg


 

From: Moon47
Subject: Re: Torus that Once was Twisted (22KB)
Date: 4 Jul 2000 00:51:51
Message: <39601EEE.5B572C62@earthlink.net>
Wow... I like it... What did you do...?

Tor Olav Kristensen wrote:

> Earlier today I messed around a little
> bit with Peter Popov's code for
> "one of those twisted thingies"
>
> And from his code I learned something
> that some (or many ?) of you others
> probably already knew:
>
> Components in a Blob can be Scaled and
> Transformed individually !
>
> Very useful !  Thank you Peter.
>
> This is one of the images that came out.
>
> (I rendered it a little to dark, so
> instead of waiting for another 4 hours
> rendering, I adjusted the tonal balance
> a little bit.)
>
> Tor Olav
> --
> mailto:tor### [at] hotmailcom
> http://www.crosswinds.net/~tok/tokrays.html
>
>   ------------------------------------------------------------------------
>  [Image]


Post a reply to this message

From: Ross Litscher
Subject: Re: Torus that Once was Twisted (22KB)
Date: 4 Jul 2000 02:10:58
Message: <39617ff2@news.povray.org>
>
> And from his code I learned something
> that some (or many ?) of you others
> probably already knew:
>
> Components in a Blob can be Scaled and
> Transformed individually !


Grrrr... i knew that and never managed such an interesting object with that
knowledge ;)


Post a reply to this message

From: Peter Popov
Subject: Re: Torus that Once was Twisted (22KB)
Date: 4 Jul 2000 02:35:13
Message: <c113mssf2lhnv2rf26qnufgekv66u8emq6@4ax.com>
On Tue, 04 Jul 2000 02:13:44 +0200, Tor Olav Kristensen
<tor### [at] onlineno> wrote:

>Earlier today I messed around a little 
>bit with Peter Popov's code for
>"one of those twisted thingies" 

Oh no! Zilvah, what have we done?
*runs away*

>Components in a Blob can be Scaled and 
>Transformed individually !

Eureka :))

>Very useful !  Thank you Peter.

De nada.

>This is one of the images that came out.

/me likes. Looks like an amoeba of sorts (or so my brother says).

>(I rendered it a little to dark, so 
>instead of waiting for another 4 hours
>rendering, I adjusted the tonal balance 
>a little bit.)

I thought you were using a Mac and hence the gamma problem. It's a
nice image nonetheless.


Peter Popov ICQ : 15002700
Personal e-mail : pet### [at] usanet
TAG      e-mail : pet### [at] tagpovrayorg


Post a reply to this message

From: Jamie Davison
Subject: Re: Torus that Once was Twisted (22KB)
Date: 4 Jul 2000 16:27:54
Message: <MPG.13cc3e62d18c5f50989722@news.stmuc.com>
[snip]
> >This is one of the images that came out.
> 
> /me likes. Looks like an amoeba of sorts (or so my brother says).

Looks more like a Sand Dollar to me.  For those who don't know, a Sand 
Dollar is an echinoderm (or starfish for the non-biologists out there) 
which ends up sold to tourists as a curiosity in various places (I think 
my mother brought a couple back from Florida)

Cute image though.

Bye for now,
     Jamie,


Post a reply to this message

From: Lt  Kettch
Subject: Re: Torus that Once was Twisted (22KB)
Date: 4 Jul 2000 20:46:14
Message: <39628471.B7BB66CB@aol.com>
But the main body is missing, and that is where the stomach and the mouth
and "Brain" is located... how would it eat?

--
"Yub-Yub!" Lt. Kettch


Post a reply to this message

From: Jamie Davison
Subject: Re: Torus that Once was Twisted (22KB)
Date: 5 Jul 2000 18:26:48
Message: <MPG.13cdae5934dbc787989724@news.stmuc.com>
> But the main body is missing, and that is where the stomach and the mouth
> and "Brain" is located... how would it eat?

Brain?  These are echinoderms we're talking about... :)

They have a pentaradial nerve ring, which is about as close as you get to 
a nervous centre.

If I could be bothered, I'd dig out my invertebrates text from my degree 
and *really* bore you :)

But I was thinking more of the skeletons which are what get sold to 
tourists.

(BTW, don't get me started any more than I am already.  It's not a pretty 
sight <grin>)

Bye for now,
     Jamie.


Post a reply to this message

From: Tor Olav Kristensen
Subject: Re: Torus that Once was Twisted (22KB)
Date: 5 Jul 2000 21:07:48
Message: <3963DB48.510E862F@online.no>
Moon47 wrote:
> 
> Wow... I like it... What did you do...?

Thank you, but I didn't do much.

I just modified some of Peter's translation 
and rotation statements with some cosine values.


See code below.

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


#declare Steps = 1500;
#declare MajorRad = 10;
#declare MinorRad = 2;
#declare Turns = 5;

#declare Circumference = 2*pi*MajorRad;
#declare Thickness = 5*Circumference/Steps;

#declare dDegStep = 360/Steps;
#declare dRadStep = 2*pi/Steps; 

#declare TwistedTorus =
blob {
  threshold 1
  #declare Cnt = 0;
  #while (Cnt < Steps)
    #local RadCnt = Cnt*dRadStep;
    #local DegCnt = Cnt*dDegStep;
    sphere {
      0, 3, 0.125
      scale <2*MinorRad, MinorRad*0.5, Thickness>
      translate x*MinorRad
      rotate 12*cos(Turns*RadCnt)*z
      translate MajorRad*x + MinorRad/8*cos(Turns*RadCnt)*y
      rotate (DegCnt + 8*cos(Turns*RadCnt))*y
    }
    #declare Cnt = Cnt + 1;
  #end
  sturm
}


Post a reply to this message

From: Tor Olav Kristensen
Subject: Re: Torus that Once was Twisted (22KB)
Date: 5 Jul 2000 21:18:53
Message: <3963DDE2.BFA05529@online.no>
Ross Litscher wrote:
> 
> >
> > And from his code I learned something
> > that some (or many ?) of you others
> > probably already knew:
> >
> > Components in a Blob can be Scaled and
> > Transformed individually !
> 
> Grrrr... i knew that and never managed such an interesting object with that
> knowledge ;)

:|  Do not Bite !


In this image the scaling for each blob 
component (sphere) is the same. 

But how about scaling each blob component 
completely independently from all the
others ?

One could for example do the scaling 
relative to the components position in 
space or relative to a pattern (in 
MegaPOV ?) or as functions of a loop 
counter or by some trigonometric 
functions or ....

But I guess most of this has been done 
before. :(


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: Torus that Once was Twisted (22KB)
Date: 5 Jul 2000 21:28:18
Message: <3963E016.1DAC3207@online.no>
Peter Popov wrote:
> ...
> Oh no! Zilvah, what have we done?
> *runs away*

Hmmm ... I wonder who Zilvah is. :) 

(None of my searches at Altavista, Excite or 
Infoseek produced any results.)


> /me likes. Looks like an amoeba of sorts (or so my brother says).

Thank you.


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


Post a reply to this message

Goto Latest 10 Messages Next 4 Messages >>>

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