Your First Part : Hello Cube
Getting Started
In the following, we will show how to use the Foundation library to create a simple cube in Python. By default when creating a new file on BuildR, the cube example is loaded. This example is a good starting point to understand how to use the library.
First, we create a new component using the Part()
function. This function
returns a Part object that we can use to create operations on.
Next, we create a new sketch on the XY plane using the xy()
function,
similarly you could also use the YZ or XZ planes using the yz()
and xz()
functions respectively.
Next, we can create four points on the sketch and join them with lines. On a sketch you can draw points, lines, circles, polygons and more geometrical shapes.
Finally, we can extrude the sketch to create a 3D object. The extrude()
function takes the created shape and the height.
To show the the component on the screen and generate the resulting 3D model, we
can use the show()
function and pass it the cube component.
Improving on our cube example
We can improve our cube example by using inheritance and leveraging some of the built-in methods from the Foundation library. Here’s an improved version of the cube:
Let’s break down the improvements and explain why this version is cleaner:
-
Inheritance: We recommend using inheritance for creating a
Part
orAssembly
. You can that way simplify the different operations into their own functions and have parameters in the constructor. (Not you don’t need to call the super().init() method) -
Initialization: The
size
parameter is now part of the__init__
method. This allows users to specify the cube size when creating an instance. -
Using
Square.from_center_and_side
: Instead of manually creating points and lines, we use theSquare.from_center_and_side
method. On top of this tihs will center the cube, we also extend the sketch with an extrusion in both direction for centering on the z axis as well. -
create_main_extusion
as a method: We recommend creating methods for the different operation steps of the part. This makes it easier to iteratively build the part and makes the code more readable.
To use this improved version, you simply create an instance of the Cube
class
and show it:
cube = Cube(size=30)
show(cube)