black formatting

This commit is contained in:
Frank Martinez
2025-09-26 13:23:01 -05:00
parent 8e51db4072
commit 591e8a36b3
205 changed files with 381 additions and 853 deletions

View File

@@ -7,7 +7,6 @@ from typing import Final
from Base.Metadata import export
from Base.PyObjectBase import PyObjectBase
@export(
Include="Mod/Mesh/App/Edge.h",
Namespace="Mesh",
@@ -46,7 +45,6 @@ class Edge(PyObjectBase):
After calling unbound() no topological operation will
work!"""
...
Index: Final[int]
"""The index of this edge of the facet"""

View File

@@ -7,7 +7,6 @@ from typing import Any, Final
from Base.Metadata import export
from Base.PyObjectBase import PyObjectBase
@export(
Include="Mod/Mesh/App/Facet.h",
Namespace="Mesh",
@@ -57,7 +56,6 @@ class Facet(PyObjectBase):
"""getEdge(int) -> Edge
Returns the edge of the facet."""
...
Index: Final[int]
"""The index of this facet in the MeshObject"""

View File

@@ -8,7 +8,6 @@ from Base.Metadata import constmethod, export
from App.ComplexGeoData import ComplexGeoData
@export(
Twin="MeshObject",
TwinPointer="MeshObject",
@@ -510,7 +509,6 @@ class Mesh(ComplexGeoData):
The items in the list contains minimum and maximum curvature with their directions
"""
...
Points: Final[list]
"""A collection of the mesh points
With this attribute it is possible to get access to the points of the mesh

View File

@@ -8,7 +8,6 @@ from Base.Metadata import export
from App.GeoFeature import GeoFeature
@export(
Twin="Feature",
TwinPointer="Feature",

View File

@@ -7,7 +7,6 @@ from typing import Any, Final
from Base.Metadata import export
from Base.PyObjectBase import PyObjectBase
@export(
Include="Mod/Mesh/App/MeshPoint.h",
Namespace="Mesh",
@@ -34,7 +33,6 @@ class MeshPoint(PyObjectBase):
After calling unbound() no topological operation will
work!"""
...
Index: Final[int]
"""The index of this point in the MeshObject"""

View File

@@ -6,7 +6,6 @@ from typing import Any
from Gui.ViewProviderGeometryObject import ViewProviderGeometryObject
from Base.Metadata import export
@export(
Include="Mod/Mesh/Gui/ViewProvider.h",
Namespace="MeshGui",