Posts in Houdini
Coloring Points vs Primitives in Houdini

So what happens if a color is assigned to the points instead of the primitives? What is the difference between assigning color to points versus assigning color to primitives? Sometimes we experience color bleeding onto other primitives of the geometry, this article explains why.

Read More
Houdini Expressions & Functions

Houdini expressions are functions available to help you calculate values in the parameters of the nodes. You may have seen $HIPNAME which returns the name of the current hip file. Or the centroid one that I use most often for procedural modeling, $CEX $CEY $CEZ, which returns the centroid vector component.

Read More
SDF used to Deform Geometry

Building upon that collision detection, we can also use the SDF to deform the object upon the collision. Using the SDF value and some math, the grid can be deformed to create footprints stamped on by the Torus.

Read More
SDF (Signed Distance Field) used to Detect Overlapping Objects

SDF is short for signed distance field and describes the interior volume of an object. How thick an object is from the middle to the surface? How deep does the cylinder extend? From any point inside an object, using the SDF, it is possible to easily grab the distance to the surface of the object in order to know the depth.

Read More
Modeling Thickness & Hollow Interior using Procedural Workflow in Houdini

I demonstrate how to use a procedural workflow to create a bottle geometry from scratch. This project finishes off from the previous project and makes it more complete by hollowing out the interior of the bottle geometry and adds thickness to the edges. And also still using a procedural workflow.

Read More
Procedural Modeling in Houdini

Procedural Modeling has infinite possible ways of doing things, and the way Houdini does its point number assignment makes it very convenient to write VEX code to automate things. Using VEX into your procedural modeling workflow is a huge advantage.

Read More
Manipulate Height Fields with Volume VOP's in Houdini

Volume VOP’s (visual operators) are extremely powerful! Volume VOP’s like any other VOP nodes in Houdini is multi-threaded and all operations are run in parallel utilizing all the cores in your computer. Fast and flexible, who could ask for more?

Read More