Jump to content


edward

Member Since 10 Sep 2002
Offline Last Active Private
*****

Posts I've Made

In Topic: Python - Issues building file from a template

22 May 2013 - 08:11 PM

.hip files are not pure ASCII. They are actually ASCII "packets" within a cpio format file. There are some provided command line tools to expand and collapse .hip files if you want to do some very low-level surgery. Personally, I would just load up hython with your .hip file, do whatever operation you want and then save it back out again.

In Topic: Call me 0x000000ff

14 May 2013 - 03:32 PM

You see how some of those numbers are powers of 2? It means that they're bit flags. So 0xFF will match any of those first 6 primitive types.

Random Google link http://forum.codecal...l-with-example/

In Topic: UV´s on polywire

14 May 2013 - 02:01 AM

I thought the PolyWire SOP already had options for texturing?

In Topic: Custom TAB submenu and selector to not reuse selection

14 May 2013 - 01:54 AM

2) See OP3D_InputSelectorBase::allowFinishWithExistingSelection()

In Topic: Call me 0x000000ff

14 May 2013 - 01:30 AM

The primmask refers to *_FILEID enums in GEO_PrimTypeCompat.h. A regular GEO_PrimTypeCompat mask can be used if you first convert it using GEO_PrimTypeCompat::convertToFileFromMask(). I've better documented the bindSelector() method for the next major Houdini release.