black formatting
This commit is contained in:
@@ -7,7 +7,6 @@ from typing import Any, Final
|
||||
from Base.PyObjectBase import PyObjectBase
|
||||
from Base.Metadata import constmethod, export
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/CenterLine.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -17,7 +16,7 @@ from Base.Metadata import constmethod, export
|
||||
class CenterLine(PyObjectBase):
|
||||
"""
|
||||
CenterLine specifies additional mark up edges in a View
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
@@ -31,7 +30,6 @@ class CenterLine(PyObjectBase):
|
||||
def copy(self) -> Any:
|
||||
"""Create a copy of this centerline"""
|
||||
...
|
||||
|
||||
Tag: Final[str]
|
||||
"""Gives the tag of the CenterLine as string."""
|
||||
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Final
|
||||
from Base.PyObjectBase import PyObjectBase
|
||||
from Base.Metadata import export
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/Cosmetic.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -18,7 +17,7 @@ from Base.Metadata import export
|
||||
class CosmeticEdge(PyObjectBase):
|
||||
"""
|
||||
CosmeticEdge specifies an extra (cosmetic) edge in Views
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -6,7 +6,6 @@ from Base.Metadata import export
|
||||
|
||||
from App.DocumentObjectExtension import DocumentObjectExtension
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/CosmeticExtension.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -14,7 +13,7 @@ from App.DocumentObjectExtension import DocumentObjectExtension
|
||||
class CosmeticExtension(DocumentObjectExtension):
|
||||
"""
|
||||
This object represents cosmetic features for a DrawViewPart.
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any, Final
|
||||
from Base.PyObjectBase import PyObjectBase
|
||||
from Base.Metadata import constmethod, export
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/Cosmetic.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -17,7 +16,7 @@ from Base.Metadata import constmethod, export
|
||||
class CosmeticVertex(PyObjectBase):
|
||||
"""
|
||||
CosmeticVertex specifies an extra (cosmetic) vertex in Views
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
@@ -31,7 +30,6 @@ class CosmeticVertex(PyObjectBase):
|
||||
def copy(self) -> Any:
|
||||
"""Create a copy of this CosmeticVertex"""
|
||||
...
|
||||
|
||||
Tag: Final[str]
|
||||
"""Gives the tag of the CosmeticVertex as string."""
|
||||
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from TechDraw.DrawViewPart import DrawViewPart
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawBrokenView.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from TechDraw.DrawViewPart import DrawViewPart
|
||||
class DrawBrokenView(DrawViewPart):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing broken views
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from App.DocumentObject import DocumentObject
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawGeomHatch.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -15,7 +14,7 @@ from App.DocumentObject import DocumentObject
|
||||
class DrawGeomHatch(DocumentObject):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing GeomHatch areas
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -6,7 +6,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from App.DocumentObject import DocumentObject
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawHatch.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -14,7 +13,7 @@ from App.DocumentObject import DocumentObject
|
||||
class DrawHatch(DocumentObject):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing Hatch areas
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -5,7 +5,6 @@ from __future__ import annotations
|
||||
from Base.Metadata import export
|
||||
from DrawView import DrawView
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawLeaderLine.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -14,7 +13,7 @@ from DrawView import DrawView
|
||||
class DrawLeaderLine(DrawView):
|
||||
"""
|
||||
Feature for adding leaders to Technical Drawings
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any, Final
|
||||
from Base.Metadata import export
|
||||
from App.DocumentObject import DocumentObject
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawPage.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -15,7 +14,7 @@ from App.DocumentObject import DocumentObject
|
||||
class DrawPage(DocumentObject):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing Pages
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
@@ -46,7 +45,6 @@ class DrawPage(DocumentObject):
|
||||
def requestPaint(self) -> Any:
|
||||
"""Ask the Gui to redraw this page"""
|
||||
...
|
||||
|
||||
PageWidth: Final[float]
|
||||
"""Returns the width of this page"""
|
||||
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any, Final
|
||||
from Base.Metadata import export
|
||||
from DrawTemplate import DrawTemplate
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawParametricTemplate.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from DrawTemplate import DrawTemplate
|
||||
class DrawParametricTemplate(DrawTemplate):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing Templates
|
||||
|
||||
|
||||
Author: Luke Parry (l.parry@warwick.ac.uk)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
@@ -24,6 +23,5 @@ class DrawParametricTemplate(DrawTemplate):
|
||||
def drawLine(self) -> Any:
|
||||
"""Draw a line"""
|
||||
...
|
||||
|
||||
GeometryCount: Final[int]
|
||||
"""Number of geometry in template"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from TechDraw.DrawViewCollection import DrawViewCollection
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawProjGroup.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from TechDraw.DrawViewCollection import DrawViewCollection
|
||||
class DrawProjGroup(DrawViewCollection):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing Projection Groups
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from TechDraw.DrawViewPart import DrawViewPart
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawProjGroupItem.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from TechDraw.DrawViewPart import DrawViewPart
|
||||
class DrawProjGroupItem(DrawViewPart):
|
||||
"""
|
||||
Feature for creating and manipulating component Views Technical Drawing Projection Groups
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -5,7 +5,6 @@ from __future__ import annotations
|
||||
from Base.Metadata import export
|
||||
from TechDraw.DrawView import DrawView
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawRichAnno.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -14,7 +13,7 @@ from TechDraw.DrawView import DrawView
|
||||
class DrawRichAnno(DrawView):
|
||||
"""
|
||||
Feature for adding rich annotation blocks to Technical Drawings
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from DrawTemplate import DrawTemplate
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawSVGTemplate.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from DrawTemplate import DrawTemplate
|
||||
class DrawSVGTemplate(DrawTemplate):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing SVG Templates
|
||||
|
||||
|
||||
Author: Luke Parry (l.parry@warwick.ac.uk)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -6,7 +6,6 @@ from Base.Metadata import export
|
||||
|
||||
from App.DocumentObject import DocumentObject
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawTemplate.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -14,7 +13,7 @@ from App.DocumentObject import DocumentObject
|
||||
class DrawTemplate(DocumentObject):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing Templates
|
||||
|
||||
|
||||
Author: Luke Parry (l.parry@warwick.ac.uk)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -6,7 +6,6 @@ from Base.Metadata import export
|
||||
|
||||
from App.DocumentObject import DocumentObject
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawTile.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -14,7 +13,7 @@ from App.DocumentObject import DocumentObject
|
||||
class DrawTile(DocumentObject):
|
||||
"""
|
||||
Feature for adding tiles to leader lines
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -5,7 +5,6 @@ from __future__ import annotations
|
||||
from Base.Metadata import export
|
||||
from TechDraw.DrawTile import DrawTile
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawTileWeld.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -14,7 +13,7 @@ from TechDraw.DrawTile import DrawTile
|
||||
class DrawTileWeld(DrawTile):
|
||||
"""
|
||||
Feature for adding welding tiles to leader lines
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -8,7 +8,6 @@ from Base.Metadata import export
|
||||
|
||||
from App.DocumentObject import DocumentObject
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawView.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from App.DocumentObject import DocumentObject
|
||||
class DrawView(DocumentObject):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing Views
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -5,7 +5,6 @@ from __future__ import annotations
|
||||
from Base.Metadata import export
|
||||
from TechDraw.Drawview import DrawView
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawViewAnnotation.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -14,7 +13,7 @@ from TechDraw.Drawview import DrawView
|
||||
class DrawViewAnnotation(DrawView):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing Annotation Views
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from TechDraw.DrawView import DrawView
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawViewClip.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from TechDraw.DrawView import DrawView
|
||||
class DrawViewClip(DrawView):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing Clip Views
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from TechDraw.DrawView import DrawView
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawViewCollection.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from TechDraw.DrawView import DrawView
|
||||
class DrawViewCollection(DrawView):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing View Collections
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from TechDraw.DrawViewDimension import DrawViewDimension
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawViewDimExtent.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from TechDraw.DrawViewDimension import DrawViewDimension
|
||||
class DrawViewDimExtent(DrawViewDimension):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing DimExtents
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from TechDraw.DrawView import DrawView
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawViewDimension.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from TechDraw.DrawView import DrawView
|
||||
class DrawViewDimension(DrawView):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing Dimensions
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from TechDraw.rawView import DrawView
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawViewPart.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from TechDraw.rawView import DrawView
|
||||
class DrawViewPart(DrawView):
|
||||
"""
|
||||
Feature for creating and manipulating Technical Drawing Part Views
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any
|
||||
from Base.Metadata import export
|
||||
from TechDraw.DrawView import DrawView
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawViewSymbol.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -16,7 +15,7 @@ from TechDraw.DrawView import DrawView
|
||||
class DrawViewSymbol(DrawView):
|
||||
"""
|
||||
Feature for creating and manipulating Drawing SVG Symbol Views
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -5,7 +5,6 @@ from __future__ import annotations
|
||||
from Base.Metadata import export
|
||||
from TechDraw.DrawView import DrawView
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/DrawWeldSymbol.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -14,7 +13,7 @@ from TechDraw.DrawView import DrawView
|
||||
class DrawWeldSymbol(DrawView):
|
||||
"""
|
||||
Feature for adding welding tiles to leader lines
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
|
||||
@@ -7,7 +7,6 @@ from typing import Any, Final
|
||||
from Base.PyObjectBase import PyObjectBase
|
||||
from Base.Metadata import constmethod, export
|
||||
|
||||
|
||||
@export(
|
||||
Include="Mod/TechDraw/App/Cosmetic.h",
|
||||
Namespace="TechDraw",
|
||||
@@ -17,7 +16,7 @@ from Base.Metadata import constmethod, export
|
||||
class GeomFormat(PyObjectBase):
|
||||
"""
|
||||
GeomFormat specifies appearance parameters for TechDraw Geometry objects
|
||||
|
||||
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
"""
|
||||
@@ -31,6 +30,5 @@ class GeomFormat(PyObjectBase):
|
||||
def copy(self) -> Any:
|
||||
"""Create a copy of this geomformat"""
|
||||
...
|
||||
|
||||
Tag: Final[str]
|
||||
"""Gives the tag of the GeomFormat as string."""
|
||||
|
||||
Reference in New Issue
Block a user