Learning By ExamplesChess Lib

Introduction

Hello and welcome to this simple guide to making your first chess pieces! We will start with simple pieces, like the pawn, and then we will try some more complicated pieces.

The Pawn

The pawn is indeed the simplest piece, so we’ll start by creating the component using:

pawn = Part()

Once that’s done, we’ll create a sketch and initialize it with a plane from our component. In this example, we’ll choose the xz plane:

sketch = Sketch(pawn.xz())

Now that everything is set up, we can start drawing the shape of the pawn by specifying dimensions using arcs or lines with the sketch.pencil.(line/arc) methods. Remember, we can add _to or not to define whether point1 will be the initial point (default 0,0) or the last point that was traced via sketch.pencil.

# Base
sketch.pencil.line_to(15, 0)
sketch.pencil.line(0, 3)
sketch.pencil.line(-2, 2)
sketch.pencil.arc(-3, 8.97, -6)
sketch.pencil.line(0, 1)
sketch.pencil.arc(-2, 2, -2)
 
# Body
sketch.pencil.arc(-3, 24.06, 50)
sketch.pencil.arc(1, 3.26, -2)
sketch.pencil.arc_to(0, 60, -9)

Now that we’ve drawn our shape, let’s check that it looks good before moving on. To do this, we need to finish our drawing and retrieve the shape that we’ll use later to turn it into 3D with:

shape = sketch.pencil.get_closed_shape()

We can now display the shape to see the first rendering.

Now that we can see our well-drawn sketch, let’s turn it into 3D. To do this, we’ll apply the Lathe method to our sketch. First, we need to define the axis for this operation. Since we want our sketch to rotate around itself, we’ll create a line on our sketch and define it as the axis.

line = Line(Point(sketch, 0, 0), Point(sketch, 0, 10))
axis = Axis(line)

Now that we have our axis, we can perform the Lathe operation using our shape and axis. Once it’s defined, we need to add this operation to our component.

lathe = Lathe(shape, axis)
pawn.add_operation(lathe)

Now let’s do some code formatting and take a look at our final render:

The Bishop

Now that we know how to make a pawn, the bishop won’t be very different. The only thing that will change for the bishop is the sketch drawing. The rest will be very similar.

The Queen

The Rook

Now let’s move on to the rook. The biggest difference here is that we also need to take care of the top, as it’s not flat like the others. To do this, we’ll first draw the rook without the top, like this:

Now we’ll cut off the top. To do this, we’ll add a new operation. By extruding the top, we’ll get the desired result.

First, let’s change the plane and position ourselves below the area we want to cut. Since we want to cut from 70 to 75, we’ll position ourselves at 70. We’ll use the PlaneFactory class for this, which has a get_parallel_plane method:

pf = PlaneFactory()
plane = pf.get_parallel_plane(self.part.xy(), 70)
sketch = Sketch(plane)

Now that our sketch is in the right place, we want to draw a cross shape to cut from all four sides. To do this, we’ll draw on the sketch again:

Tip: We can see that this gives us quite repetitive code. We’ll see how to simplify this in the king section.

Now that we have this cross, all we have to do is use the extrusion operation, making sure to pass cut=True as an argument:

shape = self.cut_sketch()
self.rook.add_operation(Extrusion(shape, 20, cut=True))

Here’s our final render:

The King

Now let’s move on to the king. The king will be quite similar to the rook, but the top cut is more complex. We can see that it needs to be cut at an angle. In this case, we’ll use CircularPattern. It’s pretty simple. We’ll start by drawing the first part of the top cross, but only the first part. Once that’s done, we’ll ask for the pattern to be repeated 6 times with respect to a point placed exactly at the bottom and in the middle of our drawing. We won’t forget to add the pattern we already have at the return. Like this:

Once this is done, just like with the rook, we’ll extrude, and we’re done:

The Knight

Now let’s move on to the knight. The challenge here is to be able to perform a different operation on the same plane. Indeed, the base will be a Lathe as with the others. But the body of the knight will be made using an Extrusion.

Here’s how to draw the knight:

To create the base, we’ll use the Lathe operation as before:

shape, axis = self.get_base_sketch()
self.knight.add_operation(Lathe(shape, axis))

For the body, we’ll use the Extrusion operation:

shape = self.get_knight_sketch()
self.knight.add_operation(Extrusion(shape, -5, 5))

Here’s our final render: