Adding license documentation to interface class docblocks.

This commit is contained in:
Ian 'z0r0' Abreu
2025-09-01 21:50:59 -04:00
parent 0af34eeff6
commit b0b9f8fc35
76 changed files with 154 additions and 1 deletions

View File

@@ -11,6 +11,8 @@ from Base.Metadata import export
)
class Area(BaseClass):
"""
Author: Zheng, Lei (realthunder.dev@gmail.com)
License: LGPL-2.1-or-later
FreeCAD python wrapper of libarea
Path.Area(key=value ...)

View File

@@ -10,6 +10,8 @@ from App.DocumentObject import DocumentObject
)
class FeatureArea(DocumentObject):
"""
Author: Zheng, Lei (realthunder.dev@gmail.com)
License: LGPL-2.1-or-later
This class handles Path Area features
"""

View File

@@ -11,6 +11,8 @@ from App.DocumentObject import DocumentObject
)
class FeaturePathCompound(DocumentObject):
"""
Author: Yorik van Havre (yorik@uncreated.net)
License: LGPL-2.1-or-later
This class handles Path Compound features
"""

View File

@@ -13,6 +13,8 @@ from Base.Persistence import Persistence
)
class Path(Persistence):
"""
Author: Yorik van Havre (yorik@uncreated.net)
License: LGPL-2.1-or-later
Path([commands]): Represents a basic Gcode path
commands (optional) is a list of Path commands
"""

View File

@@ -11,6 +11,8 @@ from Base.Metadata import constmethod, export
)
class Voronoi(BaseClass):
"""
Author: sliptonic (shopinthewoods@gmail.com)
License: LGPL-2.1-or-later
Voronoi([segments]): Create voronoi for given collection of line segments
"""

View File

@@ -12,6 +12,8 @@ from Base.Metadata import constmethod, export
)
class VoronoiCell(BaseClass):
"""
Author: sliptonic (shopinthewoods@gmail.com)
License: LGPL-2.1-or-later
Cell of a Voronoi diagram
"""

View File

@@ -12,6 +12,8 @@ from Base.Metadata import constmethod, export
)
class VoronoiEdge(BaseClass):
"""
Author: sliptonic (shopinthewoods@gmail.com)
License: LGPL-2.1-or-later
Edge of a Voronoi diagram
"""

View File

@@ -12,6 +12,8 @@ from Base.Metadata import constmethod, export
)
class VoronoiVertex(BaseClass):
"""
Author: sliptonic (shopinthewoods@gmail.com)
License: LGPL-2.1-or-later
Vertex of a Voronoi diagram
"""