PFoamSimpleSmoothing2 Method |
Edge length smoothing routine. All edges will be resized based on specified parameters.
Orientation will be kept within the supplied tolerance.
Edges will be resized inside the supplied foam object.
Namespace:
PolyFramework
Assembly:
PolyFramework (in PolyFramework.dll) Version: 0.5.0.0 (0.5.0.0)
Syntaxpublic void SimpleSmoothing2(
int maxSteps,
double conVAngle = 0.017,
IList<int> fixedVerts = null
)
Public Sub SimpleSmoothing2 (
maxSteps As Integer,
Optional conVAngle As Double = 0.017,
Optional fixedVerts As IList(Of Integer) = Nothing
)
public:
void SimpleSmoothing2(
int maxSteps,
double conVAngle = 0.017,
IList<int>^ fixedVerts = nullptr
)
member SimpleSmoothing2 :
maxSteps : int *
?conVAngle : float *
?fixedVerts : IList<int>
(* Defaults:
let _conVAngle = defaultArg conVAngle 0.017
let _fixedVerts = defaultArg fixedVerts null
*)
-> unit
Parameters
- maxSteps
- Type: SystemInt32
maximal number of steps for the algorithm - conVAngle (Optional)
- Type: SystemDouble
orientation maximal deviation in Radians - fixedVerts (Optional)
- Type: System.Collections.GenericIListInt32
set of vertices that will be kept fixed
See Also