|
@@ -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;
|