浏览代码

Update PNTSLoader.d.ts

Garrett Johnson 4 年之前
父节点
当前提交
a23fbb3eea
共有 1 个文件被更改,包括 8 次插入1 次删除
  1. 8 1
      src/three/PNTSLoader.d.ts

+ 8 - 1
src/three/PNTSLoader.d.ts

@@ -1,9 +1,16 @@
 import { PNTSBaseResult } from '../base/PNTSLoaderBase';
+import { FeatureTable } from '../utilities/FeatureTable';
 import { Points } from 'three';
 
+interface PNTSScene extends Point {
+
+	featureTable : FeatureTable;
+	
+}
+
 export interface PNTSResult extends PNTSBaseResult {
 
-	scene: Points;
+	scene : PNTSScene;
 
 }