kattkieru

kattkieru

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

attack of the noob Aug. 26, 2009, 2:24 p.m.

Thanks for replying so fast! ^_^/

edward
In vex ops (VEX), it's a bit different because you're just visually coding there. So that might meet your definition of “push” because a snippet of VEX (similar to the renderman shading language RSL) code is created for every VOP node.

Thanks for explaining that; means my Maya knowledge can transfer on most OP networks. The VEX language, tho – is it compiled? I keep seeing people talk about how much VEX is like RSL, making me think that the VEX OPs that get built are also compiled and operate at a fast speed?

The default is to cache all geometry at every node that is evaluated (aka “cooked” in Houdini jargon). However, it's all “live” in that you can change any parameter (aka “attribute” in Maya) and all affected nodes will recook. If a node isn't affected by a parameter change, then it will not recook. There are preferences that say when cooked data should be thrown out (eg. memory threshold, explicit flags on the nodes, etc).

What about keeping file load times down? Do cooked geometries get saved out at the last visible level into hip files? Or is the entire network “recooked” at startup?

These dependencies form a DAG that is always evaluated in a “pull” manner. You can't have cycles still though but because they're fine grained, you can probably go fairly far until you run into them.

Ahh okay. Then I think I'm not fully understanding what's going on, and should rewatch a few of those vids.

I generally avoid expressions, but it seems that all channel referencing is done through expressions? Doesn't that slow the system down a lot?

attack of the noob Aug. 25, 2009, 10:40 p.m.

Hi folks,

I work with this guy who's an old-hat with Houdini. This is our second company in a row working together, and while on the last Maya-based project I didn't have a lot of time to think about other packages, I'm at a point now where I want to find something that works better for me and Houdini is very, very appealing.

I have a few questions I was wondering if folks could answer for me. Keep in mind I'm a total noob. I know Maya, LW, C4D, and Blender, but Houdini is a different animal.

- Do Houdini node networks push data, or pull? IE, do nodes at the top calculate first and then send data downstream (a la C4D's XPresso), or do nodes downstream ask upstream nodes for their data (a la Maya)?

- How are nodes cached? If I jump out of SOP level into the object level, and none of the parameters are animated in my SOP network are changed, can I assume the mesh is cached at the final displayed SOP and the one at the object level is kind of frozen, so that the nodes inside aren't calculating live?

- Lastly, I'm trying to watch some tutorials (3D Buzz's stuff is amazing – can't believe they have so much up for free!) and it seems like sometimes people are referencing parameters at levels upstream or downstream through expressions would cause cycle errors in Maya. I can't remember the name… There was a function that they ran that referenced a parameter by name. How does all that work? Does Houdini avoid cycle errors through magic, or are the networks non-acyclic (pushing data as opposed to DAG-style data pulling), or do those parameters get stored in a way that put them outside the graph?

That was a mouthful. Thanks in advance for any light you can shine on the above.