/**
* @constructor
*/
function XUISmartCity() {
}
XUISmartCity.prototype = {
//接口
/**
* 相机旋转
*/
CameraMove:function () {
},
/**
* 加载光效
*/
initObject:function () {
},
/**
* 加载场景
*/
threeStart:function () {
},
/**
* 动画刷新
*/
animation:function () {
},
/**
* 加载城市模型
*/
GltfModel:function () {
},
/**
* 模型加载
*/
LoadGltfModel:function () {
},
/**
* 生成3D坐标
* @param {Number} nNumber 数值
*/
initCircleCurveGroup:function (nNumber) {
},
/**
* 开始渲染
*/
Render:function () {
},
/**
* 停止渲染
*/
StopRender:function () {
},
}