Skip to content

Commit 7948856

Browse files
authored
Update boundaryfittednurbs.py (#673)
1 parent 8402895 commit 7948856

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ansys/meshing/prime/autogen/boundaryfittednurbs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class BoundaryFittedSpline(CoreObject):
1212
"""
1313

1414
def __init__(self, model: CommunicationManager):
15-
""" Initialize BoundaryFittedSpline """
15+
""" Initialize BoundaryFittedSpline. """
1616
self._model = model
1717
self._comm = model._communicator
1818
command_name = "PrimeMesh::BoundaryFittedSpline/Construct"
@@ -31,7 +31,7 @@ def __exit__(self, type, value, traceback) :
3131
self._comm.serve(self._model, command_name, self._object_id, args={})
3232

3333
def create_boundary_fitted_spline(self, part_id : int, cell_zonelet_ids : Iterable[int], boundary_fitted_spline_params : BoundaryFittedSplineParams) -> IGAResults:
34-
""" Create boundary fitted spline for structured hex-mesh.
34+
""" Creates boundary fitted spline for structured hex-mesh.
3535
3636
The hex-mesh can be structured in blocks but must be conformally connected.
3737
That is, each block must have six sided volume and must be connected to other blocks through unique face.
@@ -95,7 +95,7 @@ def refine_spline(self, part_id : int, spline_ids : Iterable[int], refine_spline
9595
Returns
9696
-------
9797
IGAResults
98-
Returns the IGAResults Structure.
98+
Returns the IGAResults structure.
9999
100100
101101
Examples

0 commit comments

Comments
 (0)