GetNodeId
Overloads
| Name | Description |
|---|---|
| GetNodeId(int index) | Node Index to Node ID |
GetNodeId(int index)
public int GetNodeId(int index)
Node Index to Node ID
Parameters
| Name | Type | Description |
|---|---|---|
| index | int | Node Index |
Returns
| Type | Description |
|---|---|
| int | Node 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);
}