"use strict";
var _ = require("lodash");
/**
* @class View3D.Node
* 节点操作
*
* 不应该直接创建,应该由{@link NodeFactory}创建出来
*/
function Node(session, objectID, name) {
this.objectID = objectID;
this.session = session;
this.name = name;
};
/**
* 获取节点名字
*
* @return {String}
*/
Node.prototype.getName = function () {
return this.name;
};
module.exports = Node;