MergeSingleNode
Overloads
| Name | Description |
|---|---|
| MergeSingleNode(string input, string output) | 단일 노드로 모델 병합 |
MergeSingleNode(string input, string output)
public bool MergeSingleNode(string input, string output)
단일 노드로 모델 병합
Parameters
| Name | Type | Description |
|---|---|---|
| input | string | Input - VIZ Path |
| output | string | Output - VIZ Path |
Returns
| Type | Description |
|---|---|
| bool | Result |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
string input = "C:\\Model\\Input.viz";
string output = "C:\\Model\\Output.viz";
bool result = vizcore3d.Model.MergeSingleNode(input, output);
}