GPUGraph.Node.Clone C# (CSharp) Метод

Clone() публичный Метод

Generates a new node identical to this one, including the UID, but with no graph owner.
public Clone ( ) : Node
Результат Node
        public Node Clone()
        {
            return Clone(null, false);
        }

Same methods

Node::Clone ( Graph newOwner, bool addToOwner, int idOffset ) : Node