Draft: add modules of draftfunctions to the proper Doxygen group

This includes `array`, `cut`, `downgrade`, `draftiffy`, `extrude`,
`fuse`, `heal`, `join`, `mirror`, `move`, `offset`, `rotate`,
`scale`, `split` and `upgrade`.

These are added to the `draftfunction` Doxygen group
so that the functions contained in each module are listed
appropriately in the automatically generated documentation.
This commit is contained in:
vocx-fc
2020-05-05 17:46:54 -05:00
committed by Yorik van Havre
parent 223e627900
commit a1ce2389d3
15 changed files with 157 additions and 129 deletions

View File

@@ -20,12 +20,13 @@
# * USA *
# * *
# ***************************************************************************
"""This module provides the code for Draft join functions.
"""
"""Provides functions to join wires together into a single wire."""
## @package join
# \ingroup DRAFT
# \brief This module provides the code for Draft join functions.
# \ingroup draftfuctions
# \brief Provides functions to join wires together into a single wire.
## \addtogroup draftfuctions
# @{
import FreeCAD as App
@@ -89,3 +90,5 @@ def join_two_wires(wire1, wire2):
joinTwoWires = join_two_wires
## @}