Pavel Pehlivanov
pavelPeh
About Me
Connect
LOCATION
Not Specified
ウェブサイト
Houdini Engine
Availability
Not Specified
Recent Forum Posts
Practicing Patience for release 16 2017年1月4日9:55
I suspect that new surface tension model for flip included in 15.5.673 is a backport from 16's surface tension, so at least now we have something to play with until the real thing is out (:
array return types for Attribute Wrangler SOP 2015年3月4日1:22
It will accept this:
int findclass(int ptclass; int pt) {
if (ptclass != pt) {
ptclass = findclass(ptclass, pt);
}
return ptclass;
}
but will fail again, because:
int findclass(int ptclass; int pt) {
if (ptclass != pt) {
ptclass = findclass(ptclass, pt);
}
return ptclass;
}
but will fail again, because:
docs
The functions are in-lined automatically by the compiler, so recursion will not work. To write a recursive algorithm, you should use shader calls instead.
Attribute Vop in houdini 14 2015年2月26日9:03
You have to combine it with setattribute vop or just use bind export.