Sydney

bondi bike

bondibike.jpg

Code, Travel

siggraph 2011

This year i am actually going there, so i am back in Canada after uhm... 8 years . So here is my plans for the week:

1. Get that Pixar teapot
2. Meet interesting people

and while i am there see Vancouver..

Houdini, python

Technodolly motion control camera to Houdini

A Technodolly motion control camera

is probably the fanciest way to write a simple ascii file like this:

printf("%c%d.00,%.4f,%.4f,%.4f,%.3f,%.4f,%.4f,%.4f,%.4f,%.4f%c",
startLetter, frameNumber,
X, Y, Z,
pan, tilt, roll,
zoom, focus, iris, ’\n’);

R0.00, 4.2376,-1.0234,1.1942, -65.029,3.959,0.000, 0.000, 0.001, 0.00

Simple to translate into a .chan file for loading it into Houdini. The coordinate system needs to be changed a bit but luckily one can easily compare results against their free Maya plugin.

Houdini

Deadline render farm software with mantra

I just had a chance to use use deadline renderfarm software with mantra today.
The Build-in submission plugin failed badly failed on windows for spaces in the paths, hm... But it has out of the box really nice options to cretae chained jobs for ifd export and mantra rendering, which make good use of the free mantra licenses  Houdini comes with and you can use for render only jobs. It's a quick solution if you dont want to script your own farm rop node.

C++, Code

getopt() for Windows

When looking for a C++ option parser that works on linux and windows
i found XGetopt by Hans Dietrich Software but given that it had been published in 2003 i had to make some modification to make it work on windows properly. So my version is here (in Getopt).

Simply include  #include "XGetopt.h" instead of <unistd.h>  and you have an option parser running on windows and linux.

Code, Maya, python

Translating from mel to python done right…

While translating from mel to python is straight forward you might end up doing more than that just because python thinks different.
Mel script tends to tangle gui code, querying maya scene properties and "processing" code, so at least separating them properly is a good first step.

Rewriting the texture manager below using a texture class object shortened the code dramatically.
A 1200 lines melscript is now some 360 lines of python and a .ui file. Python rules...

Here is the code.

Code, Maya, python, tool

pyQT with Maya2011: adding a dynamic checkbox list

I decided to give good old texture checker tool a new gui as maya 2011 stopped supporting some formating features it was using.
After building a .ui in QtDesigner i added code to update the dynamic checkbox list (a QListWidget) and connect the other widgets.

gui6.jpg

I didn't find accessing the dynamically created check boxes too straight forward, so here is a code snippet:

 
#get the list
listWidget=self.chLayout.itemAt(0).widget()
 
#add check boxes
item = QtGui.QListWidgetItem(listWidget)
ch = QtGui.QCheckBox()
listWidget.setItemWidget(item, ch)
 
#query check boxes status
for index in xrange(listWidget.count()):
    check_box = listWidget.itemWidget(listWidget.item(index))
    state = check_box.checkState()
 

Here is a useful example for using pyQt in maya with Threads in a way that doesn't block the gui.

And here is the code.

Sydney

nye 2011

nyeyellow.jpg

14 hours wait was worth it, happy new 2011!

more pics http://www.flickr.com/photos/48805586@N04/sets/72157625591112693/

Herberts pic on cnn:

http://ireport.cnn.com/docs/DOC-535111#

Sydney

bondi christmas

img_9606.jpg

Sydney

lunar eclipse

captured by herbert, featured by abc

http://www.abc.net.au/news/photos/2010/12/22/3099060.htm

Next »