Subassemblies
Splitting our CAD into multiple assemblies.
Last updated
Splitting our CAD into multiple assemblies.
Last updated
This work is licensed under a Attribution-ShareAlike 2.0 Generic License
Splitting CAD into subassemblies makes it easier for us to iterate when we are farther along our project, and saves our computer from loading the entire robot when we just want to work on one subsystem.
Create three new assembly files by going to File
, New
, Assembly
.
For all main assemblies, we put an exclamation point before the name. Doing this makes the file appear first in the directory.
The first assembly will be the main assembly. This is where every subsystem will come together to form the robot. This robots name is Bingus, so this file will be ! Bingus.iam
and will go in our Bingus directory.
Even though this isn't the full robot, this is the entire chassis assembly, making this one of our main assemblies. This will be saved in our Chassis folder, and will be called ! Chassis.iam
.
Our final assembly file will be for our drive wheels. This is not a main file, and will just be called Wheel.iam
. and will be saved to the Chassis folder.
Jess - EZ