Gradient Fall-off Volume

   9836   7   0
User Avatar
Member
17 posts
Joined: 8月 2014
Offline
Hi everyone, I am dabbling with volumes recently and I wish to know how can I have a fall-off of volume, gradiently? (see image attached).

I have zero to minimal knowledge of volume vop. Forum Users talk about volume sample and volume gradient when I search on forums regarding this issue.



**Additional Info– Better still if I can control, say, point A is densest and point B is thinnest.**



Thank you in advance.

Attachments:
grad.jpg (970.3 KB)

User Avatar
Member
1731 posts
Joined: 5月 2006
Online
Something like this?

Attachments:
vol_spherical_density.hip (72.4 KB)

http://www.tokeru.com/cgwiki [www.tokeru.com]
https://www.patreon.com/mattestela [www.patreon.com]
User Avatar
Member
17 posts
Joined: 8月 2014
Offline
Wow, this is it. It's very nice. Thank you! Really appreciate it.
User Avatar
Member
17 posts
Joined: 2月 2017
Offline
Super cool ! this exactly what I was looking for ! thanks thanks thanks !
User Avatar
Member
1 posts
Joined: 11月 2018
Offline
Hi there,
i am completely new to Houdini, sorry for that.
How would i create volumetric gradient, that is more dense at the bottom and density will be less at the top?
A volumetric vertical gradient i mean.
Many thanxs for help
User Avatar
Member
4486 posts
Joined: 2月 2012
Offline
Inside a volumewrangle you can just do:

@density = 1 - relbbox(@P).y;
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

youtube.com/@pragmaticvfx | patreon.com/animatrix | animatrix2k7.gumroad.com
User Avatar
Member
1 posts
Joined: 1月 2019
Offline
animatrix_
Inside a volumewrangle you can just do:

@density = 1 - relbbox(@P).y;
thanks! and how this can be achieved along all three axes x,y,z?
User Avatar
Member
178 posts
Joined: 1月 2013
Offline
tapoh
thanks! and how this can be achieved along all three axes x,y,z?

Without testing, probably like:
@density = 1 - length(relbbox(@P));
  • Quick Links