|
ElemSet Constructor (String, Double)
|
Initializes a new instance of the
ElemSet class.
create element set based on an element identifier.
Namespace:
Karamba.Elements
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic ElemSet(
string id,
double split_length = 0.001
)
Public Sub New (
id As String,
Optional split_length As Double = 0.001
)
public:
ElemSet(
String^ id,
double split_length = 0.001
)
new :
id : string *
?split_length : float
(* Defaults:
let _split_length = defaultArg split_length 0.001
*)
-> ElemSet
Parameters
- id
- Type: SystemString
identifier of elements to be part of the set. - split_length (Optional)
- Type: SystemDouble
minimum length for splitting elements. The split is not done if pieces shorter than split_length would result.
See Also