The following is the Python script of the robot model that we will design:
- Before starting the Python script in Blender, we must import the bpy module. The bpy module contains all the functionalities of Blender and it can only be accessed from inside the Blender application:
import bpy
- The following function will draw the base plate of the robot. This function will draw a cylinder with a radius of 5 cm and cut a portion from the opposite sides so that motors can be connected using the Boolean modifier inside Blender:
#This function will draw base plate def Draw_Base_Plate():
- The following two commands will create two cubes with a radius of 0.05 meters on either side of the base plate. The purpose of ...