Parameter and Variable Handling

file Banner.png
Click here to get to find a link to the Guided Houdini Files.

 

In Houdini we distinguish different types of parameters that we want to clarify here. A golden source can be found here on the Houdini help site. We now summarise the most important details to take away.

Node parameters

The addition of this parameter has been done in the “Creating Geometry From Scratch” tutorial. Parameters created this way will appear by default with a slider.

35.gif
A gif from the previous tutorial.

Global variables

Houdini provides a way to access global variables such as $F, $FF, $T, $FPS, $PI, $E, $HOME and so on. A list of these can be found here.

The animation tutorial shows how to use $F inside the Node options but not inside actual VEX code. One way in order to use for example $F inside VEX code we need to insert a node parameter. Lets continue the “Creating Geometry From Scratch” Tutorial to understand this.

55.gif
This was our previous result. Manual adjustment.

Previously we needed int n = int(ch(“numSpokes”)); to grab our parameter from the slider into the vex code. Using the slider we can insert 10*$F/$NFRAMES into the number of Spokes field to make numSpokes carry the information of $into the VEX code. Now when we hit play at the bottom left we will see the result in the scene view.

56.gif
This is now an animation. Using $F inside the VEX code.

Attributes

Attributes are a powerful tool that you will need in order to access essential data of your geometry as well as custom data that you want to pass from node to node. These are directly usable Inside a VEX code node. When you look for specific VEX functions be sure to check the VEX function documentation here.

Some global attributes are always accesible inside VEX code, such as @Time, @Frames, which can replace the need of using $F.

Inside a node that is handling points @ptnum is an attribute that returns the index of the point currently handled and @P for the coordinate of a point and @numpt the total number of points. The most important such attributes are listed here. For example, to access the index attribute of the next edge in a curve of points you can use: int halfEdge = pointhedge(0,@ptnum);. If you want to know what half edges are look here.

To add a new attribute simply create it inside the VEX code. Here we add a mass and an orientation to the point. These are arbitrary names. The default value is always zero.

You can view the a list of types with their respective syntax here.

One example on how to get the attribute of the destination of the previously acquired halfEdge is the following.

The zero indicates the main input geometry. When multiple geometries flow into one node this index can separate the accesses. In general, the attrib( … ) function looks like this:

inputGeometry: id of geometry. Default is 0. Other inputs into the node can be reached by id 1, 2, 3 respectively.

typeOfObject: ‘point’, ‘vertex’, ‘prim’, ‘detail’ etc… the types Houdini handles.

nameOfAttribute: ‘P’, ‘N’, ‘pscale’, ‘orient’, ‘mass’, ‘area’ whatever you define or there is by default.

idOfObject: 0, 1, 2, … id of object. All points, vertices, primitives are always enumerated from 0 to @numpt-1, @numvtx-1, @numprim-1 respectively. ‘details’ can be accessed with index 0 always.

We can also set attributes of other points:

To see Attributes in action refer to the later chain curve example.

Another great attribute to remember is the @Cd attribute. It encodes the Color diffuse in RGB(red, green, blue) and can be manipulated by choosing Cd[0],Cd[1] and Cd[2] between 0 and 1.

Remember that it is important what kind of wrangle node you use. A point wrangle uses the attributes of points and runs the code over each point while a volume wrangle does the same for voxels. All of them are attribute wranglers with a selected Run Over group.

wranglers.PNG
Attributes wrangle node can run over different types.

If you want to run the code only once select the Detail in Run Over inside the wrangler. If you want to run the code over every point choose “Points” etc…

Other Useful Values

Accessing the total number of points, primitives or vertices can be accessed using @numpt, @numvtx, @numprim.

The current id can be accessed by @ptnum, @vtxnum, @primnum.

A list of more expressions in VEX code or Hscript can be found here.

Here is an example of a detail attribute wrangle that grabs a neighbouring point and modifies its values. Pay attention how the the point values are grabbed and modified.

We also have an example of a point wrangle where the color is defined by the position.

The two above example lead to this result:

color polygon.gif
See how a point’s coordinates where successfully doubled.

More detailed examples can be seen in the chain curve example in a later tutorial. Notice that this is fundamental to understand in order to create more complex operations.

Inspecting Attributes

To view what attributes are currently in use you can look at the geometry spreadsheet located next to the scene view tabs after highlighting a node. Here you can see what values are attached to what points, vertices, primitives or globally to the detail.

spreadsheet inspection.gif
Geometry spreadsheet inspection of the result of the code above.

As we can see here, a neighbour of point 0 has doubled it’s mass just as our code demanded.

 

 

Making Your Own Global Variables

 

In many applications you will have many adjustable parameters such as the number of iterations or the size of the step etc. It would be undesirable to have to find and dive into each separate node to adjust the parameters manually. We will now present a nice way to avoid this mess by collecting all parameters in one single node. Please do this to keep your code/network clean.

Create a null node and create parameters inside it as we have done in previous tutorials (creating geometry from scratch). This is a blank node which is ideal for this purpose. We will name ours parameters_space.

101.gif
Creating the null node.
102.gif
Add parameters such as a float as we have done before.

Next we show how to use this newly created parameter in three different settings.

In Hscript (used in the node parameter editor) we can simply call ch(“../parameters_space/epsilon”) to paste the value into the line.

103.gif
Channel access to epsilon in Hscript to rotate a geometry.

In VEX code we use
float epsilon = ch(“../parameters_space/epsilon”);
to extract the parameter value.

105.gif
Channel access in VEX code.

In python we use
epsilon = hou.ch(“../parameters_space/epsilon”)
to extract the parameter value.

104.gif
Channel access in python.

This method can also be used to grab parameters from other nodes.

 

Print Friendly, PDF & Email