Creates new Cluster object

Namespace:  FlowMap
Assembly:  FlowMap (in FlowMap.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	_pos As Vector3, _
	_description As String, _
	_objDescr As String, _
	_weight As Single, _
	_isLeaf As Boolean, _
	_isRoot As Boolean _
)
C#
public Cluster(
	Vector3 _pos,
	string _description,
	string _objDescr,
	float _weight,
	bool _isLeaf,
	bool _isRoot
)
Visual C++
public:
Cluster(
	Vector3 _pos, 
	String^ _description, 
	String^ _objDescr, 
	float _weight, 
	bool _isLeaf, 
	bool _isRoot
)
JavaScript
FlowMap.Cluster = function(_pos, _description, _objDescr, _weight, _isLeaf, _isRoot);

Parameters

_pos
Type: Vector3
Position
_description
Type: System..::.String
Description / Name
_objDescr
Type: System..::.String
Flow Class description
_weight
Type: System..::.Single
Weight
_isLeaf
Type: System..::.Boolean
Cluster is leaf
_isRoot
Type: System..::.Boolean
Cluster is root

See Also