Complete the code to define a ground plane on the bottom layer.
AddPolygon([1], layer='Bottom', net='GND')
The ground plane is created by defining a polygon with vertices on the bottom layer connected to the GND net.
Complete the code to set the clearance for the ground plane on the bottom layer.
SetClearance([1], layer='Bottom', net='GND')
A clearance of 0.2mm is typical to avoid short circuits between the ground plane and other nets.
Fix the error in the code to correctly assign the ground plane to the bottom layer.
CreatePlane(net='GND', layer=[1])
The ground plane must be assigned to the 'Bottom' layer to be on the bottom side of the PCB.
Fill both blanks to create a ground plane with a thermal relief on the bottom layer.
AddThermalRelief([1], net='GND', layer=[2])
The thermal relief is added to a polygon on the 'Bottom' layer connected to the GND net.
Fill all three blanks to define a ground plane with a clearance and thermal relief on the bottom layer.
DefinePlane(net=[1], layer=[2], clearance=[3])
The ground plane is defined on the 'Bottom' layer with a clearance of 0.2mm connected to the 'GND' net.
