First week - 26/09/2022
For the first week we all introduced our selves on who we are and where we came from with each different backgrounds. It took an half an hour or so to get to the point to the next task which was a warm up work shop where we have to code a certain commands on Maya via using Python. What this command does inserts a certain type of cube or any shape into the workspace in Maya. For me I edited around with the width and height. This command line was used from this website from autodesk.
https://help.autodesk.com/view/MAYAUL/2023/ENU/index.html?contextId=COMMANDSPYTH...
For the commands that we used were:
import maya.cmds as cmds cmds.polyCube( sx=10, sy=15, sz=5, h=20 ) #result is a 20 units height rectangular box #with 10 subdivisions along X, 15 along Y and 20 along Z. cmds.polyCube( sx=5, sy=5, sz=5 ) #result has 5 subdivisions along all directions, default size # query the width of a cube w = cmds.polyCube( 'polyCube1', q=True, w=True )