Node =>Duplicate

Duplicate a node object and return the duplicate,

 public static Node Node_Duplicate(SPData sPData, Node originNode)

Example:

// Get the first node of the branch with key 0
var node = SPData.BranchesDict[0].Nodes[0];
//Duplicate the node and catch the duplicate in a variable
Node duplicateNode=SplinePlusAPI.Node_Duplicate(SPData,node);