POV-Ray : Newsgroups : povray.binaries.images : My first isosurface. ~41kbu Server Time
3 Oct 2024 13:21:04 EDT (-0400)
  My first isosurface. ~41kbu (Message 3 to 12 of 22)  
<<< Previous 2 Messages Goto Latest 10 Messages Next 10 Messages >>>
From: David Fontaine
Subject: Re: My first isosurface. ~41kbu
Date: 9 Feb 2000 18:37:36
Message: <38A1F9EA.E28D76E@faricy.net>
Simen Kvaal wrote:

> I did this to visualize my homework in "Vector Calculus" class today. Neat
> feature, these isosurfaces. I know that it probably was possible to do with
> std. pov, but it's so much easier to write "2xy^2/(x^2+y^4) instead of a
> buch of zeroes and ones. ;-)

"Vector calculus"--what grade are you in?
(Yeah! Finished all my homework for the week during class in math! Wish I
hadn't had two friggin' years of repeat in middle school...)

--
___     ______________________________________________________
 | \     |_                 <dav### [at] faricynet> <ICQ 55354965>
 |_/avid |ontaine               http://www.faricy.net/~davidf/

"Sitting on a cornflake, waiting for the van to come" -Beatles


Post a reply to this message

From: Ross Litscher
Subject: Re: My first isosurface. ~41kbu
Date: 9 Feb 2000 21:23:00
Message: <38a22104@news.povray.org>
David Fontaine <dav### [at] faricynet> wrote in message
news:38A### [at] faricynet...
> Simen Kvaal wrote:
>
> > I did this to visualize my homework in "Vector Calculus" class today.
Neat
> > feature, these isosurfaces. I know that it probably was possible to do
with
> > std. pov, but it's so much easier to write "2xy^2/(x^2+y^4) instead of a
> > buch of zeroes and ones. ;-)
>
> "Vector calculus"--what grade are you in?
> (Yeah! Finished all my homework for the week during class in math! Wish I
> hadn't had two friggin' years of repeat in middle school...)
>
>


Dah! Math!! I've been in college nearly four years. this is the first
quarter I havn't had a math class.


Post a reply to this message

From: Thomas Willhalm
Subject: Re: My first isosurface. ~41kbu
Date: 10 Feb 2000 04:15:39
Message: <qqmvh3x5sg4.fsf@schlatt.fmi.uni-konstanz.de>
Josh English <eng### [at] spiritonecom> writes:

> I havne't figured out an easy way to use the right handed coordinate system 
> the book uses in POV-Ray, which is the same right handed system you display 
> here, but all the illustraions are from the other side

I have not tried this, but shouldn't 

camera {
  right -4/3*x
  sky z
  location <soandso>
  look_at <anotherpoint>
}

work? Read the section "Placing the camera" in the POV-Ray reference
to learn more about these values.

Thomas

-- 
http://thomas.willhalm.de/ (includes pgp key)


Post a reply to this message

From: Simen Kvaal
Subject: Re: My first isosurface. ~41kbu
Date: 10 Feb 2000 04:17:11
Message: <38a28217@news.povray.org>
>"Vector calculus"--what grade are you in?

It's the name of the book, by Mardsden and Troma. Second half of first year
in Univeristy of Oslo, Norway. We're learning analysis if functions with
several variables. You know, this is _the_ class for POV-ray users! After
three weeks, I know enough maths to write my own isosurface code! (I don't
mean to _use_ the isosurfaces, but to code the program itself... That is, If
I was any good at C++ ;)


Post a reply to this message

From: Chris Huff
Subject: Re: My first isosurface. ~41kbu
Date: 10 Feb 2000 07:02:42
Message: <chrishuff_99-773CAB.07034410022000@news.povray.org>
In article <38a28217@news.povray.org>, "Simen Kvaal" 
<sim### [at] studentmatnatuiono> wrote:

> >"Vector calculus"--what grade are you in?
> 
> It's the name of the book, by Mardsden and Troma. Second half of 
> first year in Univeristy of Oslo, Norway. We're learning analysis if 
> functions with several variables. You know, this is _the_ class for 
> POV-ray users! After three weeks, I know enough maths to write my own 
> isosurface code! (I don't mean to _use_ the isosurfaces, but to code 
> the program itself... That is, If I was any good at C++ ;)

But POV isn't written in C++, it is written in C. :-)
Although there are plans to rewrite it in C++ for version 4...

-- 
Chris Huff
e-mail: chr### [at] yahoocom
Web page: http://chrishuff.dhs.org/


Post a reply to this message

From: Ron Parker
Subject: Re: My first isosurface. ~41kbu
Date: 10 Feb 2000 09:07:20
Message: <slrn8a5hgf.v8.ron.parker@ron.gwmicro.com>
On Thu, 10 Feb 2000 10:17:08 +0100, Simen Kvaal wrote:
>>"Vector calculus"--what grade are you in?
>
>It's the name of the book, by Mardsden and Troma. 

I think I have that book!  But isn't it Tromba?

-- 
These are my opinions.  I do NOT speak for the POV-Team.
The superpatch: http://www2.fwi.com/~parkerr/superpatch/
My other stuff: http://www2.fwi.com/~parkerr/traces.html


Post a reply to this message

From: Peter Warren
Subject: Re: My first isosurface. ~41kbu
Date: 10 Feb 2000 09:52:15
Message: <38a2d09f@news.povray.org>
What is this "Math" you speak of?

coo kook achew,

Peter W


Post a reply to this message

From: Josh English
Subject: Re: My first isosurface. ~41kbu
Date: 10 Feb 2000 11:53:05
Message: <38A2ECFC.869F19C0@spiritone.com>
Thanks, will all of the experimenting I've done with the camera I couldnt' get it
to work. Your code is just what I need.
Thanks

Thomas Willhalm wrote:

> Josh English <eng### [at] spiritonecom> writes:
>
> > I havne't figured out an easy way to use the right handed coordinate system
> > the book uses in POV-Ray, which is the same right handed system you display
> > here, but all the illustraions are from the other side
>
> I have not tried this, but shouldn't
>
> camera {
>   right -4/3*x
>   sky z
>   location <soandso>
>   look_at <anotherpoint>
> }
>
> work? Read the section "Placing the camera" in the POV-Ray reference
> to learn more about these values.
>
> Thomas
>
> --
> http://thomas.willhalm.de/ (includes pgp key)

--
Josh English
eng### [at] spiritonecom
"May your hopes, dreams, and plans not be destroyed by a few zeros."


Post a reply to this message

From: Simen Kvaal
Subject: Re: My first isosurface. ~41kbu
Date: 10 Feb 2000 15:46:14
Message: <38a32396@news.povray.org>
>>
>>It's the name of the book, by Mardsden and Troma.
>
>I think I have that book!  But isn't it Tromba?


Oops! Of course. (go to www.troma.com for something _completely_ different.)
Must have missed the 'b' there... :/

But the book is great! Why don't you go to
http://www.uio.no/~simenkv/ma105/index.htm and see for yourself? Compare
with figure 2.7.2 in the book and _behold_. I think it's quite similar, only
better... ;)

Simen.


Post a reply to this message

From: Ron Parker
Subject: Re: My first isosurface. ~41kbu
Date: 10 Feb 2000 18:13:34
Message: <slrn8a6hvt.ov.ron.parker@linux.parkerr.fwi.com>
On Thu, 10 Feb 2000 21:46:10 +0100, Simen Kvaal wrote:
>But the book is great! Why don't you go to
>http://www.uio.no/~simenkv/ma105/index.htm and see for yourself? Compare
>with figure 2.7.2 in the book and _behold_. I think it's quite similar, only
>better... ;)

As I said, I have the book, so I just opened it to page 179 and
compared. :)  Yours is much nicer-looking, I agree.  Also, I see
that it's Marsden and Tromba, so you must have just flipped the
B over and stuck it in the other name. :)


Post a reply to this message

<<< Previous 2 Messages Goto Latest 10 Messages Next 10 Messages >>>

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