## 摄像机
```
{
/*...*/
'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,
},
},
/*...*/
}
```
| 参数 | 说明 | 格式 | 范围 |
| --- | --- | --- | --- | --- |
| polar_angle| 摄像机-聚焦点的连线与水平面的夹角(极角) | Object | |
| polar_angle.default | 默认弧度 | Number | 0 ~ Math.PI/2 |
| polar_angle.min | 最小弧度 | Number | 0 ~ Math.PI/2 |
| polar_angle.max | 最大弧度 | Number | 0 ~ Math.PI/2 |
| polar_angle.in_use | 是否可以自由控制极角 | Boolean | |
| azimuthal_angle| 摄像机-聚焦点的连线在水平面上的投影与X轴的夹角(方位角) | Object | |
| azimuthal_angle.default | 默认弧度 | Number | -Infinity ~ Infinity |
| azimuthal_angle.min | 最小弧度 | Number | -Infinity ~ Infinity |
| azimuthal_angle.max | 最大弧度 | Number | -Infinity ~ Infinity |
| azimuthal_angle.in_use | 是否可以自由控制方位角 | Boolean | |
| distance| 摄像机与聚焦点的距离 | Object | |
| distance.default | 默认距离 | Number | 0 ~ Infinity |
| distance.min | 最小距离 | Number | 0 ~ Infinity |
| distance.max | 最大距离 | Number | 0 ~ Infinity |
| distance.in_use | 是否可以自由控制距离 | Boolean | |
| look_at.type | 聚焦点类型,如果是 center 则为地面中心,如果是 position,则是下面的具体坐标值 | String | |
| look_at.position | 聚焦点的具体坐标值 | Object | |
| look_at.offset | 聚焦点的偏移量 | Object | |
| auto_rotate.in_use | 摄像机是否自动旋转 | Boolean | |
| auto_rotate.speed | 摄像自动旋转的弧度速率 | Number | -Math.PI ~ Math.PI |
- 序言
- 基础
- 如何使用
- 目录结构
- 配置数据
- 结构
- 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
- 联系