Description:
Merges adjacent coplanar faces into single faces.
Syntax:
public Boolean MergeCoplanarFaces(
Double tolerance,
Double angleTolerance
)
Double tolerance,
Double angleTolerance
)
Parameters:
- tolerance
- Type: System.Double
- Tolerance for determining when edges are adjacent. When in doubt, use the document's ModelAbsoluteTolerance property.
- angleTolerance
- Type: System.Double
- Angle tolerance, in radians, for determining when faces are parallel. When in doubt, use the document's ModelAngleToleranceRadians property.
Returns:
Type: Boolean
True if faces were merged, False if no faces were merged.
Available since:
6.10
Description:
Merges adjacent coplanar faces into single faces.
Syntax:
public Boolean MergeCoplanarFaces(
Double tolerance
)
Double tolerance
)
Parameters:
- tolerance
- Type: System.Double
- Tolerance for determining when edges are adjacent. When in doubt, use the document's ModelAbsoluteTolerance property.
Returns:
Type: Boolean
True if faces were merged, False if no faces were merged.
Available since:
5.0
Description:
Merges coplanar faces adjacent to Brep face into a single face.
Syntax:
public Boolean MergeCoplanarFaces(
Int32 faceIndex,
Double tolerance,
Double angleTolerance
)
Int32 faceIndex,
Double tolerance,
Double angleTolerance
)
Parameters:
- faceIndex
- Type: System.Int32
- The index of the Brep face to search.
- tolerance
- Type: System.Double
- Tolerance for determining when edges are adjacent. When in doubt, use the document's ModelAbsoluteTolerance property.
- angleTolerance
- Type: System.Double
- Angle tolerance, in radians, for determining when faces are parallel. When in doubt, use the document's ModelAngleToleranceRadians property.
Returns:
Type: Boolean
True if faces were merged, False if no faces were merged.
Available since:
7.19
Description:
Merges two coplanar, adjacent Brep faces into a single face.
Syntax:
public Boolean MergeCoplanarFaces(
Int32 faceIndex0,
Int32 faceIndex1,
Double tolerance,
Double angleTolerance
)
Int32 faceIndex0,
Int32 faceIndex1,
Double tolerance,
Double angleTolerance
)
Parameters:
- faceIndex0
- Type: System.Int32
- The index of the first Brep face.
- faceIndex1
- Type: System.Int32
- The index of the second Brep face.
- tolerance
- Type: System.Double
- Tolerance for determining when edges are adjacent. When in doubt, use the document's ModelAbsoluteTolerance property.
- angleTolerance
- Type: System.Double
- Angle tolerance, in radians, for determining when faces are parallel. When in doubt, use the document's ModelAngleToleranceRadians property.
Returns:
Type: Boolean
True if faces were merged, False if no faces were merged.
Available since:
7.19