본문으로 건너뛰기

GetNodeId

Overloads

NameDescription
GetNodeId(int index)Node Index to Node ID

GetNodeId(int index)

public int GetNodeId(int index)

Node Index to Node ID

Parameters

NameTypeDescription
indexintNode Index

Returns

TypeDescription
intNode ID

Examples

// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
int index = 10;
int id = vizcore3d.Object3D.GetNodeId(index);
}

private void Example1()
{
int id = 4;
int index = vizcore3d.Object3D.GetNodeIndex(id);
}