Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update fileiostructs.py #936

Merged
merged 3 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/936.documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update fileiostructs.py
16 changes: 11 additions & 5 deletions src/ansys/meshing/prime/autogen/fileiostructs.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ class CadFaceter(enum.IntEnum):
"""Types of CAD faceter.
"""
ACIS = 0
"""Denotes CAD faceter is Acis."""
"""Denotes CAD faceter is Acis.

Note: ACIS faceter is being deprecated from 2025R1."""
PARASOLID = 1
"""Denotes CAD faceter is Parasolid."""

Expand Down Expand Up @@ -1306,7 +1308,8 @@ class CadRefacetingParams(CoreObject):
model: Model
Model to create a ``CadRefacetingParams`` object with default parameters.
cad_faceter: CadFaceter, optional
Specify the available choices for faceter. The available option is Parasolid. (Note: ACIS faceter is being deprecated from 25R1).
Specify the available choices for faceter. The available option is Parasolid.
Note: ACIS faceter is being deprecated from 2025R1.
faceting_resolution: CadRefacetingResolution, optional
Set the faceting resolution.
custom_surface_deviation_tolerance: float, optional
Expand Down Expand Up @@ -1359,7 +1362,8 @@ def __init__(
model: Model
Model to create a ``CadRefacetingParams`` object with default parameters.
cad_faceter: CadFaceter, optional
Specify the available choices for faceter. The available option is Parasolid. (Note: ACIS faceter is being deprecated from 25R1).
Specify the available choices for faceter. The available option is Parasolid.
Note: ACIS faceter is being deprecated from 2025R1.
faceting_resolution: CadRefacetingResolution, optional
Set the faceting resolution.
custom_surface_deviation_tolerance: float, optional
Expand Down Expand Up @@ -1428,7 +1432,8 @@ def set_default(
Parameters
----------
cad_faceter: CadFaceter, optional
Specify the available choices for faceter. The available option is Parasolid. (Note: ACIS faceter is being deprecated from 25R1).
Specify the available choices for faceter. The available option is Parasolid.
Note: ACIS faceter is being deprecated from 2025R1.
faceting_resolution: CadRefacetingResolution, optional
Set the faceting resolution.
custom_surface_deviation_tolerance: float, optional
Expand Down Expand Up @@ -1479,7 +1484,8 @@ def __str__(self) -> str:

@property
def cad_faceter(self) -> CadFaceter:
"""Specify the available choices for faceter. The available option is Parasolid. (Note: ACIS faceter is being deprecated from 25R1).
"""Specify the available choices for faceter. The available option is Parasolid.
Note: ACIS faceter is being deprecated from 2025R1.
"""
return self._cad_faceter

Expand Down
Loading