Maya on Linux Rants

One thing I really like about working on Maya in windows. All the UI’s(Tools, option Boxes, etc) open are native(attached) to the main Maya window (separable). On Linux every damn UI sits on the taskbar cluttering the whole thing (I…

Round-off decimal points in Python

Nice trick i found in python. Lets say you want to round off(truncate) huge float numbers. e.g. 8.574748485950The command used is “round” x = 5.75845848484r = round (x,5) # 5 is the number of digits you want to keep after…