Add new child cluster to certain Flow Class -> certain root

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

Syntax

Visual Basic (Declaration)
Public Sub AddChildNodeToRoot ( _
	_classDescr As String, _
	_rootDescr As String, _
	_childDescr As String, _
	_position As Vector3, _
	_weight As Single _
)
C#
public void AddChildNodeToRoot(
	string _classDescr,
	string _rootDescr,
	string _childDescr,
	Vector3 _position,
	float _weight
)
Visual C++
public:
void AddChildNodeToRoot(
	String^ _classDescr, 
	String^ _rootDescr, 
	String^ _childDescr, 
	Vector3 _position, 
	float _weight
)
JavaScript
function addChildNodeToRoot(_classDescr, _rootDescr, _childDescr, _position, _weight);

Parameters

_classDescr
Type: System..::.String
Flow Class description
_rootDescr
Type: System..::.String
Root description
_childDescr
Type: System..::.String
Child (Leaf) Desctiption
_position
Type: Vector3
Child position
_weight
Type: System..::.Single
Child's weight

See Also