[DOCs] Added warning about PcbDraw and complex PCBs

This commit is contained in:
Salvador E. Tropea 2023-01-16 20:37:37 -03:00
parent edfc2e80f1
commit e6059c6508
1 changed files with 5 additions and 1 deletions

View File

@ -512,7 +512,11 @@ class PcbDraw(BaseOutput): # noqa: F821
""" PcbDraw - Beautiful 2D PCB render
Exports the PCB as a 2D model (SVG, PNG or JPG).
Uses configurable colors.
Can also render the components if the 2D models are available """
Can also render the components if the 2D models are available.
Note that this output is fast for simple PCBs, but becomes useless for huge ones.
You can easily create very complex PCBs using the `panelize` output.
In this case you can use other outputs, like `render_3d`, which are slow for small
PCBs but can handle big ones """
def __init__(self):
super().__init__()
with document: