diff --git a/src/Mod/Draft/getSVG.py b/src/Mod/Draft/getSVG.py index 28ee5b6628..eb963a9298 100644 --- a/src/Mod/Draft/getSVG.py +++ b/src/Mod/Draft/getSVG.py @@ -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 = '\n '+svg+'\n' return svg + +## @}