Skip to content

Commit

Permalink
Merge branch 'main' into doc/user_guide/update-stacker-rst
Browse files Browse the repository at this point in the history
  • Loading branch information
waltersma authored Nov 14, 2023
2 parents 585d360 + 42912fd commit 89769dd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ansys/meshing/prime/autogen/autoquadmesher.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def detect_and_treat_features(self, part_id : int, topo_face_ids : Iterable[int]
Examples
--------
>>> autoQuadMesher = AutoQuadMesher(model=model)
>>> results = autoQuadMesher.DetectAndTreatFeatures(part_id, topo_face_ids, params);
>>> results = autoQuadMesher.detect_and_treat_features(part_id, topo_face_ids, params);
"""
if not isinstance(part_id, int):
Expand Down Expand Up @@ -100,7 +100,7 @@ def repair_topology(self, part_id : int, topo_face_ids : Iterable[int], params :
Examples
--------
>>> autoQuadMesher = AutoQuadMesher(model=model)
>>> results = autoQuadMesher.RepairTopology(part_id, topo_face_ids, params);
>>> results = autoQuadMesher.repair_topology(part_id, topo_face_ids, params);
"""
if not isinstance(part_id, int):
Expand Down Expand Up @@ -145,7 +145,7 @@ def defeature_topology(self, part_id : int, topo_face_ids : Iterable[int], param
Examples
--------
>>> autoQuadMesher = AutoQuadMesher(model=model)
>>> results = autoQuadMesher.DefeatureTopology(part_id, topo_face_ids, params);
>>> results = autoQuadMesher.defeature_topology(part_id, topo_face_ids, params);
"""
if not isinstance(part_id, int):
Expand Down Expand Up @@ -190,7 +190,7 @@ def optimize_quad_mesh(self, part_id : int, topo_face_ids : Iterable[int], param
Examples
--------
>>> autoQuadMesher = AutoQuadMesher(model=model)
>>> results = autoQuadMesher.OptimizeQuadMesh(part_id, topo_face_ids, params);
>>> results = autoQuadMesher.optimize_quad_mesh(part_id, topo_face_ids, params);
"""
if not isinstance(part_id, int):
Expand Down Expand Up @@ -235,7 +235,7 @@ def check_topology(self, part_id : int, topo_face_ids : Iterable[int], params :
Examples
--------
>>> autoQuadMesher = AutoQuadMesher(model=model)
>>> results = autoQuadMesher.CheckTopology(part_id, topo_face_ids, params);
>>> results = autoQuadMesher.check_topology(part_id, topo_face_ids, params);
"""
if not isinstance(part_id, int):
Expand Down

0 comments on commit 89769dd

Please sign in to comment.