QUOTE(Marc @ Mar 3 2008, 04:16 PM)

I don't know about them... explain yourself. Or post to a link wherein it is explained

.
The VEX function
pcwrite() lets you write out a point cloud file from inside a shader. This means that you can save out a dense cloud (up to all the shading points if you wish) complete with displacements and any other attributes (like area, irradiance, etc) in a separate shading pass, then use this cloud as input to, say, an SSS shader. This is a GoodThing because you then no longer need to generate these clouds in SOPs, where you'd have to go to some trouble to account for displacements, and where you can't gather irradiance and other shader-time-only quantities.
Search the on-line docs for "pcwrite" -- there's even an example shader to show usage. It can also be found
here.
When writing the cloud you want to write one for the entire object, not just the chunk facing camera, so you want to make sure Mantra doesn't hide any back-facing or non-visible parts of your object -- i.e: you want to run your pcwrite() pass for the whole surface. That's what the
vm_hidden (or
renderer:hidden in the IFD) option is for: if set to "true" (the default), mantra will not compute geometry that's not visible from camera, whereas if set to "false", it will run everywhere. So, when doing a pcwrite() pass on some object, you want to set this option to "false".
Brief documentation on vm_hidden can be found in the "Mantra 9.1 rendering properties" page of the on-line help, or
here.
HTH.
P.S: The management takes no responsibility for damages caused from using AXYZ:SSS in Houdini 9.0 and above, as it was written for Houdini8.0 and has not been adapted for v9.x.

Instead, we recommend you use the H9.x versions of the same functions, which are now bundled in the distribution (they've been reincarnated as the VOPs
"SSS Single" and
"SSS Multi").
P.P.S: Using AXYZ:SSS (or the H9-bundled equivalent) without a pointcloud, results in single-scattering only, which in some cases (such as in Jason's image) can be just-fine-thank-you-very-much.

The H9 equivalent would be using the "SSS Single" VOP, and ignoring the "SSS Multi" VOP.
P.P.P.S: er... that's "AXYZ", not "AXIS"