* update all kcl-samples * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * Update kcl-samples simulation test output --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: Jess Frazelle <jessfraz@users.noreply.github.com> Co-authored-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
17 lines
452 B
Plaintext
17 lines
452 B
Plaintext
// Robot Arm
|
|
// A 4 axis robotic arm for industrial use. These machines can be used for assembly, packaging, organization of goods, and quality inspection processes
|
|
|
|
// Set Units
|
|
@settings(defaultLengthUnit = in)
|
|
|
|
// Import parts
|
|
import "robot-arm-base.kcl" as robotArmBase
|
|
import "robot-rotating-base.kcl" as rotatingBase
|
|
import "robot-arm-j2.kcl" as j2RobotArm
|
|
import "robot-arm-j3.kcl" as j3RobotArm
|
|
|
|
robotArmBase
|
|
rotatingBase
|
|
j2RobotArm
|
|
j3RobotArm
|