Draft: add modules of draftviewproviders to the proper Doxygen group

This includes `view_array`, `view_base`, `view_bezcurve`,
`view_bspline`, `view_circulararray`, `view_clone`, `view_dimension`,
`view_draft_annotation`, `view_draftlink`, `view_facebinder`,
`view_fillet`, `view_label`, `view_orthoarray`, `view_point`,
`view_polararray`, `view_rectangle`, `view_text`, `view_wire`,
`view_wpproxy`.

These are added to the `draftviewproviders` Doxygen group
so that the functions and classes contained in each module
are listed appropriately in the automatically generated
documentation.
This commit is contained in:
vocx-fc
2020-07-01 15:04:46 -05:00
committed by Yorik van Havre
parent 6a3de864e7
commit 08069a89eb
19 changed files with 170 additions and 93 deletions

View File

@@ -20,12 +20,13 @@
# * USA *
# * *
# ***************************************************************************
"""Provides the view provider code for the Draft Array objects.
"""
"""Provides the viewprovider code for the Array object."""
## @package view_array
# \ingroup DRAFT
# \brief Provides the view provider code for the Draft Array objects.
# \ingroup draftviewproviders
# \brief Provides the viewprovider code for the Array object.
## \addtogroup draftviewproviders
# @{
from draftviewproviders.view_base import ViewProviderDraft
@@ -72,4 +73,7 @@ class ViewProviderDraftArray(ViewProviderDraft):
vobj.DiffuseColor = colors
# Alias for compatibility with v0.18 and earlier
_ViewProviderDraftArray = ViewProviderDraftArray
## @}