Ver código fonte

管道路线绘制、加载

zhiyuan-007 3 meses atrás
pai
commit
42a3d162c6

BIN
src/assets/tex_2.png


+ 1 - 0
src/units/threejs/pathPipe.js

@@ -5,6 +5,7 @@ export const PathPipeClass = {
         this.view = options.view;
         this.paths = options.paths;
         this.color = options.color;
+        this.pipeRadius = options.pipeRadius;
         this._camera = null;
     },
 

+ 2 - 2
src/units/threejs/threeGrid.js

@@ -7,8 +7,8 @@ export const ThreeGridClass = {
         this.extent = options.extent||{minX:-5000,maxX:5000,minY:-5000,maxY:5000}; // {minX, maxX, minY, maxY}
         this.height = options.height ||1200; // 网格总高度
         this.size = options.size ||200; // 单个立方体的尺寸
-        this.layerHeight = this.layerHeight || 400, // 每层的高度
-        this.layerColors = this.layerColors || [new THREE.Color(0xff0000), new THREE.Color(0x00ff00), new THREE.Color(0x0000ff)] // 自定义每层颜色
+        this.layerHeight = options.layerHeight || 400, // 每层的高度
+        this.layerColors = options.layerColors || [new THREE.Color(0xff0000), new THREE.Color(0x00ff00), new THREE.Color(0x0000ff)] // 自定义每层颜色
         this.gridEnabled = options.gridEnabled;
         this.netEnabled = options.netEnabled;
         this.opacity = options.opacity;