How many instances of your classes will you have around? If it's only 1 or it's not holding any state get rid of it and use functions (you can aggregate them in a module if you like). Also your class method makes no sense, class methods are supposed to return an instance (typically constructors). If you want to define methods not using requiring the instance you probably need to decorate it as a static method.
tl;dr: object oriented programming include the world object, not class, in the name/description. Make sure you understand the difference between those and everything will make sense. Cheers -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPamJi-q2ubTLH-z5EaW2p%2B0WyPAztD4jX-fZzJs8eZPG%3D20Ew%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
