mordka

mordka

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Hscript command for write geo Aug. 10, 2005, 2:52 a.m.

Is there no hscript command for writing out SOP geometry? I want an hscript command that does the same as the right mouse menu item for “Save Geometry…”. Does it exist?

Adding in a VOP For Loop Jan. 29, 2004, 1:15 a.m.

Hi,

I want to use a For Loop VOP to add the output of a single Noise VOP who's parameters are changing each interation. This sort of thing is easy in VEX…

For example…

float nval = 0;
for ( i <= 5; i += 1 )
{
nval += snoise(P * i);
}

But its the += part that is ellusive in VOPs. I can find a way to add the output of the first interation to the output of the second. I tried with the switch VOP and copy VOP to no avail.

This must be possible?

Thx

Jarrett