Personal tools

HoudiniDevelopmentKit

From Odwiki

Jump to: navigation, search


Contents

[edit] The Houdini Development Kit (HDK)

The HDK is now freely distributed with HoudiniApprentice. The HDK is a C++ toolkit for developing plugins for Houdini and Mantra.

This is right place to post community documentation on the HDK.


[edit] What can I write with the HDK?

The HDK allows you to:

  • create new nodes of all types: SOPs, COPs, Objects, CHOPs, ROPs, DOPs and POPs
  • create new HScript commands and expressions.
  • extend the VEX function set.
  • draw into the viewport (look for GR_RenderHook) by intecepting the geometry on the way to the viewport.
  • write MantraProcedurals.
  • extend the supported FileFormats.
  • access a large and extremely useful library of utility classes that are traditionally not available in other API's.

[edit] HDK Resources

[edit] General Development