TechArt Recap 2019 – Personal Journeys

Being a Creature/Character TD for 14+ years has had its ups and downs but I am glad it has still kept me curious, passionate and lively, mentor and student, experienced and beginner. I am writing this post to record some…

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…