|
DividedCurve Constructor
|
Namespace:
Karamba.Utilities.Mesher
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic DividedCurve(
ICurve f,
int nrsubdivs,
bool evenly = false,
double hmax = -1,
List<Tuple<Point3, double>> densradi = null
)
Public Sub New (
f As ICurve,
nrsubdivs As Integer,
Optional evenly As Boolean = false,
Optional hmax As Double = -1,
Optional densradi As List(Of Tuple(Of Point3, Double)) = Nothing
)
public:
DividedCurve(
ICurve^ f,
int nrsubdivs,
bool evenly = false,
double hmax = -1,
List<Tuple<Point3, double>^>^ densradi = nullptr
)
new :
f : ICurve *
nrsubdivs : int *
?evenly : bool *
?hmax : float *
?densradi : List<Tuple<Point3, float>>
(* Defaults:
let _evenly = defaultArg evenly false
let _hmax = defaultArg hmax -1
let _densradi = defaultArg densradi null
*)
-> DividedCurveParameters
- f
- Type: Karamba.GeometryICurve
curve to divide. - nrsubdivs
- Type: SystemInt32
number of subdivisions. - evenly (Optional)
- Type: SystemBoolean
true if subdivisions should be of equal length. - hmax (Optional)
- Type: SystemDouble
maximum length. - densradi (Optional)
- Type: System.Collections.GenericListTuplePoint3, Double
densification points and radii.
See Also