[Draft] Updated cmake with splitted annotation objects
. .
This commit is contained in:
committed by
Yorik van Havre
parent
88612bee7d
commit
f45314c9bc
@@ -64,6 +64,9 @@ SET(Draft_objects
|
||||
draftobjects/orthoarray.py
|
||||
draftobjects/polararray.py
|
||||
draftobjects/arc_3points.py
|
||||
draftobjects/draft_annotation.py
|
||||
draftobjects/dimension.py
|
||||
draftobjects/dimensionstyle.py
|
||||
draftobjects/README.md
|
||||
)
|
||||
|
||||
@@ -72,6 +75,9 @@ SET(Draft_view_providers
|
||||
draftviewproviders/view_circulararray.py
|
||||
draftviewproviders/view_orthoarray.py
|
||||
draftviewproviders/view_polararray.py
|
||||
draftviewproviders/view_draft_annotation.py
|
||||
draftviewproviders/view_dimension.py
|
||||
draftviewproviders/view_dimensionstyle.py
|
||||
draftviewproviders/README.md
|
||||
)
|
||||
|
||||
@@ -79,6 +85,7 @@ SET(Draft_GUI_tools
|
||||
draftguitools/__init__.py
|
||||
draftguitools/gui_base.py
|
||||
draftguitools/gui_circulararray.py
|
||||
draftguitools/gui_dimensionstyle.py
|
||||
draftguitools/gui_orthoarray.py
|
||||
draftguitools/gui_polararray.py
|
||||
draftguitools/gui_planeproxy.py
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
<file>icons/Draft_2DShapeView.svg</file>
|
||||
<file>icons/Draft_AddPoint.svg</file>
|
||||
<file>icons/Draft_AddToGroup.svg</file>
|
||||
<file>icons/Draft_Annotation_Style.svg</file>
|
||||
<file>icons/Draft_Apply.svg</file>
|
||||
<file>icons/Draft_Arc.svg</file>
|
||||
<file>icons/Draft_Arc_3Points.svg</file>
|
||||
@@ -24,6 +25,8 @@
|
||||
<file>icons/Draft_DelPoint.svg</file>
|
||||
<file>icons/Draft_Dimension.svg</file>
|
||||
<file>icons/Draft_Dimension_Tree.svg</file>
|
||||
<file>icons/Draft_Dimension_Style.svg</file>
|
||||
<file>icons/Draft_Dimension_Style_Tree.svg</file>
|
||||
<file>icons/Draft_DimensionAngular.svg</file>
|
||||
<file>icons/Draft_DimensionRadius.svg</file>
|
||||
<file>icons/Draft_Dot.svg</file>
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# ***************************************************************************
|
||||
# * (c) 2020 Carlo Pavan *
|
||||
# * Copyright (c) 2009, 2010 Yorik van Havre <yorik@uncreated.net> *
|
||||
# * Copyright (c) 2009, 2010 Ken Cline <cline@frii.com> *
|
||||
# * *
|
||||
# * This file is part of the FreeCAD CAx development system. *
|
||||
# * *
|
||||
@@ -21,11 +23,11 @@
|
||||
# * *
|
||||
# ***************************************************************************
|
||||
|
||||
"""This module provides the object code for Draft DimensionStyle.
|
||||
"""This module provides the object code for Draft Dimension.
|
||||
"""
|
||||
## @package style_dimension
|
||||
# \ingroup DRAFT
|
||||
# \brief This module provides the object code for Draft DimensionStyle.
|
||||
# \brief This module provides the object code for Draft Dimension.
|
||||
|
||||
import FreeCAD as App
|
||||
import math
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
# ***************************************************************************
|
||||
# * (c) 2020 Carlo Pavan *
|
||||
# * *
|
||||
# * This file is part of the FreeCAD CAx development system. *
|
||||
# * *
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# ***************************************************************************
|
||||
# * (c) 2019 Eliud Cabrera Castillo <e.cabrera-castillo@tum.de> *
|
||||
# * Copyright (c) 2009, 2010 Yorik van Havre <yorik@uncreated.net> *
|
||||
# * Copyright (c) 2009, 2010 Ken Cline <cline@frii.com> *
|
||||
# * *
|
||||
# * This file is part of the FreeCAD CAx development system. *
|
||||
# * *
|
||||
@@ -20,11 +21,11 @@
|
||||
# * USA *
|
||||
# * *
|
||||
# ***************************************************************************
|
||||
"""This module provides the Draft Annotations view provider base classes
|
||||
"""This module provides the Draft Dimensions view provider classes
|
||||
"""
|
||||
## @package polararray
|
||||
# \ingroup DRAFT
|
||||
# \brief This module provides the view provider code for Draft PolarArray.
|
||||
# \brief This module provides the view provider code for Draft Dimensions.
|
||||
|
||||
|
||||
import FreeCAD as App
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
# ***************************************************************************
|
||||
# * (c) 2020 Carlo Pavan *
|
||||
# * *
|
||||
# * This file is part of the FreeCAD CAx development system. *
|
||||
# * *
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
# ***************************************************************************
|
||||
# * (c) 2019 Eliud Cabrera Castillo <e.cabrera-castillo@tum.de> *
|
||||
# * *
|
||||
# * This file is part of the FreeCAD CAx development system. *
|
||||
# * *
|
||||
|
||||
Reference in New Issue
Block a user