这是 **配置数据** 的结构体样例
```
{
'global': {
'proj_url': './VSF/',
'bg_style': 'background-color: #000; background-image: linear-gradient(#333, #111); ',
},
'designer_data': {
'folder': [
{
'title': '基础',
'id': 'a',
'parent': '',
},
{
'title': '高级',
'id': 'b',
'parent': '',
},
],
},
'style_lib': {
'default': {
'__DEFAULT__': {
'face': '{color: "#00BFFF", transparent:0, opacity:0.3, depthTest: 0, }',
'texture': null,
'line': '{color: "#00BFFF", }',
},
'CommonStyle_01-obj': {
'face': '{color: "#00FFFF", transparent:0, opacity:0.3, depthTest: 0, }',
'texture': null,
'line': '{color: "#00FFFF", }',
},
},
'emphasis': {
'__DEFAULT__': {
'face': '{emissive: "#FFFFFF", opacity:0.5, }',
},
'CommonStyle_01': {
'face': '{emissive: "#FFFFFF", opacity:0.4, }',
},
'CommonStyle_02': {
'face': '{emissive: "#000000", opacity:0.5, }',
},
},
'status': {
'success': {
'face': '{color: "#7FFF00", opacity:0.6, }',
'line': '{color: "#7FFF00", }',
},
'info': {
'face': '{color: "#00BFFF", opacity:0.6, }',
'line': '{color: "#00BFFF", }',
},
'question': {
'face': '{color: "#FFFF00", opacity:0.6, }',
'line': '{color: "#FFFF00", }',
},
'warning': {
'face': '{color: "#FF9326", opacity:0.6, }',
'line': '{color: "#FF9326", }',
},
'danger': {
'face': '{color: "#FF0000", opacity:0.6, }',
'line': '{color: "#FF0000", }',
},
},
},
'environ': {
'use_label' : true,
'use_infobox' : true,
'use_icon' : true,
'use_2Dscale' : 1,
'use_stats' : 1,
'use_axis_helper': 1,
'animate_coef' : 1,
'group_navbar': {
'in_use': false,
'category': [
[
{
'id': 'test',
'label': '测试',
'active': 1,
},
],
],
'style': 'top:15px; right:15px;',
},
'fog': {
'in_use': false,
'color': '#777777',
'min': 0,
'max': 2000,
},
},
'camera': {
'polar_angle': {
'default': Math.PI/4,
'max': Math.PI/2.01,
'min': Math.PI/18,
'in_use': true,
},
'azimuthal_angle': {
'default': -Math.PI/180*60,
'max': Infinity,
'min': -Infinity,
'in_use': true,
},
'distance': {
'default': 1400,
'max': 9999,
'min': 10,
'in_use': true,
},
'look_at': {
'type': 'center', // center,position
'position': {
'x': 0, 'y': 0, 'z': 0,
},
'offset': {
'x': 0, 'y': 0, 'z': 0,
},
},
'auto_rotate': {
'in_use': true,
'speed': 0.07,
},
},
'ground': {
'size' : {
'x': 300, 'y': 300,
},
'position_offset': {
'x': 0, 'y': 0, 'z': -0.5,
},
'style': {
'color': {
'face': {
'texture': '',
// 'normal': '{ transparent:true, opacity:0.4, wireframe:false, depthTest: false, }',
'normal': '{ color: "#000000", transparent:0, opacity:0.4, side:2, depthTest: false, }',
},
'line': '{color: "#000000", linewidth: 1, }',
// 'line': '{color: "#444", linewidth: 1, }',
},
},
},
'light': {
'ambient_light': {
'color': '#FFFFFF',
'intensity': 1,
},
'directional_light': [
{
'color': '#FFFFFF',
'intensity': 0.2,
'position' : {
'x': 100, 'y': 0, 'z': 100,
},
'size': {
'width': 1000,
'height': 1000,
},
'depth': {
'near': 0.1,
'far': 9999,
},
},
],
'point_light': [
{
'color': '#FFFFFF',
'intensity': 0.05,
'distance': 500,
'position' : {
'x': 100, 'y': 100, 'z': 300,
},
}
],
},
};
```
| 参数 | 名称 | 说明 |
| --- | --- | --- |
| global | 全局配置 | |
| designer_data | 可视化构建专用 | |
| style_lib | 样式库 | |
| environ | 环境配置 | |
| camera | 摄像机 | |
| ground | 地面 | |
| light | 光源 | |
- 序言
- 基础
- 如何使用
- 目录结构
- 配置数据
- 结构
- global
- style_lib
- default
- emphasis
- status
- environ
- camera
- ground
- light
- ambient_light
- directional_light
- point_light
- 物体数据
- 结构
- 通用参数
- id
- name
- style
- advgeom
- visible
- status
- param
- property
- scale
- align
- position
- rotation
- label
- infobox
- icon
- linkline
- float
- intersect
- animate
- rotate
- shuttle
- pipeline
- flow
- route
- 多个动画
- 基础物体
- 平面 Plane
- 圆平面 Circle
- 环平面 Ring
- 立方体 Cube
- 球体 Sphere
- 圆柱体 Cylinder
- 圆环体 Torus
- 管道 Tube
- 曲面 Spline
- 墙 Wall
- 拔高体 Raise
- 正四面体 Tetrahedron
- 正八面体 Octahedron
- 正二十面体 Icosahedron
- 接口
- 先读我
- 物体类
- visible
- position
- scale
- rotation
- icon
- label
- infobox
- intersect
- param
- status
- animate
- list
- remove
- add
- 摄像机类
- get
- set
- reset
- auto_rotate
- 联系