Creates a new Node attached to this document's Root.
(name = '')
| 223 | |
| 224 | /** Creates a new {@link Node} attached to this document's {@link Root}. */ |
| 225 | createNode(name = ''): Node { |
| 226 | return new Node(this._graph, name); |
| 227 | } |
| 228 | |
| 229 | /** Creates a new {@link Camera} attached to this document's {@link Root}. */ |
| 230 | createCamera(name = ''): Camera { |
no outgoing calls