Draft: add module getSVG to the proper Doxygen group

Only one module `getSVG` added to the `getSVG` Doxygen group.

Probably at some point the module will be broken into smaller
modules to organize the code better.
This commit is contained in:
vocx-fc
2020-07-14 16:32:07 -05:00
committed by Yorik van Havre
parent 08069a89eb
commit 7566bd1343

View File

@@ -1,3 +1,10 @@
"""Provides functions to return the SVG representation of various shapes."""
## @defgroup getSVG getSVG
# \ingroup DRAFT
# \brief Provides functions to return the SVG representation of shapes.
## \addtogroup getSVG
# @{
import six
import FreeCAD, math, os, DraftVecUtils, WorkingPlane
@@ -865,3 +872,5 @@ def getSVG(obj,scale=1,linewidth=0.35,fontsize=12,fillstyle="shape color",direct
if techdraw:
svg = '<g transform ="scale(1,-1)">\n '+svg+'</g>\n'
return svg
## @}