TechDraw Symbol

From FreeCAD Documentation
Revision as of 10:58, 13 January 2019 by Le Loup (talk | contribs)

TechDraw Symbol

Menüeintrag
TechDraw → Insert SVG Symbol
Arbeitsbereich
TechDraw
Standardtastenkürzel
Keiner
Eingeführt in Version
-
Siehe auch
TechDraw Vorlagen, Draft SVG speichern

Beschreibung

Das Symbolwerkzeug fügt eine SVG-Datei als Ansicht in die Zeichnungsseite ein.

The Symbol tool inserts an SVG file into the page. This symbol can be anything that helps annotating your drawing, and that doesn't need to be further modified.

Compass rose added to the drawing page; this symbol is available by installing the SymbolsLibrary macro with the Addon Manager

Anwendung

  1. Auf die SchaltflächeFile:Techdraw-symbol.png Symbol klicken.
  2. Der Dateiauswahldialog öffnet sich. Den Pfad und den Namen der entsprechenden SVG-Datei auswählen.
  1. Press the File:Techdraw-symbol.svg Symbol button
  2. A File Save dialog will open. Select a location and file name.

If the symbol appears larger than expected, use the scale property to adjust its size.

Scripting

SVG-Dateien können mittels Python in eine Zeichnungsseite eingefügt werden.

See also: TechDraw API and FreeCAD Scripting Basics.

The Symbol tool can be used in macros and from the Python console by using the following functions:

sym = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewSymbol','TestSymbol')
rc = page.addView(anno)
f = open(unicode(symbolFileSpec,'utf-8'),'r')
svg = f.read()
f.close()
sym.Symbol = svg
rc = page.addView(sym)