Skip to content

Commit

Permalink
Update fileiostructs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
srpyprime authored Nov 13, 2024
1 parent 793df24 commit 85879c4
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 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,8 @@ 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 +1307,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 +1361,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 +1431,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 +1483,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

0 comments on commit 85879c4

Please sign in to comment.