POV-Ray : Newsgroups : povray.binaries.images : Blobbing with isosurfaces (blobbed.jpg 17.5k bu) Server Time
3 Oct 2024 19:19:22 EDT (-0400)
  Blobbing with isosurfaces (blobbed.jpg 17.5k bu) (Message 1 to 10 of 40)  
Goto Latest 10 Messages Next 10 Messages >>>
From: SamuelT 
Subject: Blobbing with isosurfaces (blobbed.jpg 17.5k bu)
Date: 26 Jan 2000 22:31:59
Message: <388FBE50.66AF0DD7@aol.com>
Hello everybody. I was a bit concerned about how I told everyone a
future isosurface tutorial would show them how to blob functions
together (spheres, cylinders, torii - you name it). I could actually do
it back then, but learned that the method had very inconsistant results.
I was starting to think I might never actually be able to blob stuff
together very good at all. That is, until the other day, when I was
trying some new functions.

Attached is a before and after image of an isosurface. The first
isosurface has 2 cylinders, 1 sphere and 1 torus all merged together.
You can do this with normal pov. The second shows how well my new
blobbing method works. There seems to be very little size-reduction in
the original components, making this method very easy to control. You
can be assured this technique will be making it into a tutorial :)

Any thoughts? Critiques?

--
Samuel Benge

E-Mail: STB### [at] aolcom

Website under construction.


Post a reply to this message


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

Preview of image 'blobbed.jpg'
blobbed.jpg


 

From: Ken
Subject: Re: Blobbing with isosurfaces (blobbed.jpg 17.5k bu)
Date: 26 Jan 2000 22:34:26
Message: <388FBBF4.6D930CD7@pacbell.net>
"SamuelT." wrote:

> Any thoughts?

Start writing :)

-- 
Ken Tyler -  1300+ Povray, Graphics, 3D Rendering, and Raytracing Links:
http://home.pacbell.net/tylereng/index.html http://www.povray.org/links/


Post a reply to this message

From: TonyB
Subject: Re: Blobbing with isosurfaces (blobbed.jpg 17.5k bu)
Date: 26 Jan 2000 22:36:39
Message: <388fbd47@news.povray.org>
>Hello everybody. I was a bit concerned about how I told everyone a
>future isosurface tutorial would show them how to blob functions
>together (spheres, cylinders, torii - you name it). I could actually do
>it back then, but learned that the method had very inconsistant results.
>I was starting to think I might never actually be able to blob stuff
>together very good at all. That is, until the other day, when I was
>trying some new functions.


When you recommended the thing back then, and it let to my torusblob and
boxblob images, you said to multiply the formulas for one object and the
other, and this worked great. What changes or new discoveries did you make?


Post a reply to this message

From: SamuelT 
Subject: Re: Blobbing with isosurfaces (blobbed.jpg 17.5k bu)
Date: 26 Jan 2000 22:39:04
Message: <388FC007.1B7596B9@aol.com>
The function now looks like this:

#declare Thr=.000000001;

function
  (1+Thr)
  -Thr^(x^2+y^2+.95) //cylinder
  -Thr^(y^2+z^2+.95) //cylinder
  -Thr^( sqr(x^2+z^2-.6)+.975+sqr(y*2) ) //toru
  -Thr^(x^2+sqr(y-.5)+z^2+.75) //sphere
 threshold 1 sign 1


TonyB wrote:

> >Hello everybody. I was a bit concerned about how I told everyone a
> >future isosurface tutorial would show them how to blob functions
> >together (spheres, cylinders, torii - you name it). I could actually do
> >it back then, but learned that the method had very inconsistant results.
> >I was starting to think I might never actually be able to blob stuff
> >together very good at all. That is, until the other day, when I was
> >trying some new functions.
>
> When you recommended the thing back then, and it let to my torusblob and
> boxblob images, you said to multiply the formulas for one object and the
> other, and this worked great. What changes or new discoveries did you make?

--
Samuel Benge

E-Mail: STB### [at] aolcom

Visit the still unfinished isosurface tutorial: http://members.aol.com/stbenge


Post a reply to this message

From: SamuelT 
Subject: Re: Blobbing with isosurfaces (blobbed.jpg 17.5k bu)
Date: 26 Jan 2000 22:43:21
Message: <388FC108.D9E2C8F8@aol.com>
I will, once I finish the tutorial for noise3d, displacement mapping and
sin/cos :P

Ken wrote:

> "SamuelT." wrote:
>
> > Any thoughts?
>
> Start writing :)
>
> --
> Ken Tyler -  1300+ Povray, Graphics, 3D Rendering, and Raytracing Links:
> http://home.pacbell.net/tylereng/index.html http://www.povray.org/links/

--
Samuel Benge

E-Mail: STB### [at] aolcom

Visit the still unfinished isosurface tutorial:
http://members.aol.com/stbenge


Post a reply to this message

From: David Heys
Subject: Re: Blobbing with isosurfaces (blobbed.jpg 17.5k bu)
Date: 26 Jan 2000 23:02:10
Message: <388FBF90.DABFE2D6@gci.net>
SamuelT. wrote:

> I was starting to think I might never actually be able to blob stuff
> together very good at all. That is, until the other day, when I was trying
> some new functions.

<snip>

> You can be assured this technique will be making it into a tutorial :)
>
> Any thoughts? Critiques?

Yea. I look forward to the tutorial. In the meantime, could we see the code
for this scene so we can play with it? :{)

David
--
Keeper of the family pets.
"You want fish? I got fish. I got fish, and eels, and turtles, and snails, and
frogs, and dragons and cats..."


Post a reply to this message

From: David Fontaine
Subject: Re: Blobbing with isosurfaces (blobbed.jpg 17.5k bu)
Date: 26 Jan 2000 23:34:36
Message: <388FC82F.A716BB5D@faricy.net>
This is great progress! (I am among the many that have visited your tutorial
off and on and have been disappointed by the fact that after so many months it
still says more to come with nothing added...)

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


Post a reply to this message

From: SamuelT 
Subject: Re: Blobbing with isosurfaces (blobbed.jpg 17.5k bu)
Date: 27 Jan 2000 00:01:24
Message: <388FD352.903AC326@aol.com>
Sorry! I'm started on it now, though!

David Fontaine wrote:

> This is great progress! (I am among the many that have visited your tutorial
> off and on and have been disappointed by the fact that after so many months it
> still says more to come with nothing added...)
>
> --
> Homepage: http://www.faricy.net/~davidf/
> ___     ______________________________
>  | \     |_       <dav### [at] faricynet>
>  |_/avid |ontaine      <ICQ 55354965>

--
Samuel Benge

E-Mail: STB### [at] aolcom

Visit the still unfinished isosurface tutorial: http://members.aol.com/stbenge


Post a reply to this message

From: Bob Hughes
Subject: Re: Blobbing with isosurfaces (blobbed.jpg 17.5k bu)
Date: 27 Jan 2000 00:57:13
Message: <388fde39@news.povray.org>
I tried to "free view" it and my eyes pleaded with me to stop.
I think it'll make for some great coated objects such as paint or rubber
coatings.
If I get what you are saying about no size reduction of the original converted
to iso'd objects then it definitely is good for things with coatings on them.

Bob

"SamuelT." <STB### [at] aolcom> wrote in message news:388FBE50.66AF0DD7@aol.com...
| Hello everybody. I was a bit concerned about how I told everyone a
| future isosurface tutorial would show them how to blob functions
| together (spheres, cylinders, torii - you name it). I could actually do
| it back then, but learned that the method had very inconsistant results.
| I was starting to think I might never actually be able to blob stuff
| together very good at all. That is, until the other day, when I was
| trying some new functions.
|
| Attached is a before and after image of an isosurface. The first
| isosurface has 2 cylinders, 1 sphere and 1 torus all merged together.
| You can do this with normal pov. The second shows how well my new
| blobbing method works. There seems to be very little size-reduction in
| the original components, making this method very easy to control. You
| can be assured this technique will be making it into a tutorial :)
|
| Any thoughts? Critiques?
|
| --
| Samuel Benge
|
| E-Mail: STB### [at] aolcom
|
| Website under construction.
|
|


--------------------------------------------------------------------------------


Post a reply to this message

From: Remco de Korte
Subject: Re: Blobbing with isosurfaces (blobbed.jpg 17.5k bu)
Date: 27 Jan 2000 05:49:21
Message: <3890220D.BF80D548@xs4all.nl>
SamuelT. wrote:
> 
> Hello everybody. I was a bit concerned about how I told everyone a
> future isosurface tutorial would show them how to blob functions
> together (spheres, cylinders, torii - you name it). I could actually
> do
> it back then, but learned that the method had very inconsistant
> results.
> I was starting to think I might never actually be able to blob stuff
> together very good at all. That is, until the other day, when I was
> trying some new functions.
> 
> Attached is a before and after image of an isosurface. The first
> isosurface has 2 cylinders, 1 sphere and 1 torus all merged together.
> You can do this with normal pov. The second shows how well my new
> blobbing method works. There seems to be very little size-reduction in
> the original components, making this method very easy to control. You
> can be assured this technique will be making it into a tutorial :)
> 
> Any thoughts? Critiques?
> 
> --
> Samuel Benge
> 
> E-Mail: STB### [at] aolcom
> 
> Website under construction.
> 
>     ---------------------------------------------------------------
>  [Image]

I'm addicted to blobs.
If this can do what it appears to be able off I'm hooked for life.
I remember some earlier messages about this and the images TonyB posted.
Am I right in assuming that I'll need MegaPov for this?

Remco


Post a reply to this message

Goto Latest 10 Messages Next 10 Messages >>>

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