Fixed Typos in source files per recommendation from @set-soft.
This commit is contained in:
parent
1436875be5
commit
7e722caf40
|
|
@ -113,7 +113,7 @@ preflight:
|
|||
#### Filtering DRC and ERC errors
|
||||
|
||||
Sometimes KiCad reports DRC or ERC errors that you can't get rid off.
|
||||
This could be just because you are part of a team including lazzy people that doesn't want to take the extra effort to solve
|
||||
This could be just because you are part of a team including lazy people that doesn't want to take the extra effort to solve
|
||||
some errors that aren't in fact errors, just small violations made on purpose. In this case you could exclude some known errors.
|
||||
|
||||
For this you must declare `filters` entry in the `preflight` section. Then you can add as many `filter` entries as you want.
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class AnyDrill(BaseOptions):
|
|||
# Options
|
||||
with document:
|
||||
self.use_aux_axis_as_origin = False
|
||||
""" Use the auxiliar axis as origin for coordinates """
|
||||
""" Use the auxiliary axis as origin for coordinates """
|
||||
self.map = DrillMap
|
||||
""" [dict|string] [hpgl,ps,gerber,dxf,svg,pdf] Format for a graphical drill map.
|
||||
Not generated unless a format is specified """
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class DXFOptions(DrillMarks):
|
|||
super().__init__()
|
||||
with document:
|
||||
self.use_aux_axis_as_origin = False
|
||||
""" Use the auxiliar axis as origin for coordinates """
|
||||
""" Use the auxiliary axis as origin for coordinates """
|
||||
self.polygon_mode = True
|
||||
""" Plot using the contour, instead of the center line """
|
||||
self.metric_units = False
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ class GerberOptions(AnyLayerOptions):
|
|||
def __init__(self):
|
||||
with document:
|
||||
self.use_aux_axis_as_origin = False
|
||||
""" Use the auxiliar axis as origin for coordinates """
|
||||
""" Use the auxiliary axis as origin for coordinates """
|
||||
self.line_width = 0.1
|
||||
""" [0.02,2] Line_width for objects without width [mm] (KiCad 5) """
|
||||
self.subtract_mask_from_silk = False
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ class STEPOptions(VariantOptions):
|
|||
""" Use metric units instead of inches """
|
||||
self._origin = 'grid'
|
||||
""" Determines the coordinates origin. Using grid the coordinates are the same as you have in the design sheet.
|
||||
The drill option uses the auxiliar reference defined by the user.
|
||||
The drill option uses the auxiliary reference defined by the user.
|
||||
You can define any other origin using the format 'X,Y', i.e. '3.2,-10' """
|
||||
self.no_virtual = False
|
||||
""" Used to exclude 3D models for components with 'virtual' attribute """
|
||||
|
|
|
|||
Loading…
Reference in New Issue