From 72b8d36457759018acd81bf56b9a87e8a2992c96 Mon Sep 17 00:00:00 2001 From: vocx-fc Date: Tue, 14 Jul 2020 16:32:07 -0500 Subject: [PATCH] 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. --- src/Mod/Draft/getSVG.py | 9 +++++++++ 1 file changed, 9 insertions(+) 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 + +## @}