1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| using System;
| using System.Collections.Generic;
| using System.Drawing;
| using System.Linq;
| using System.Text;
| using IStation.Bimface;
|
| namespace IStation.Model.Bimface
| {
| /// <summary>
| /// Bimface自定义视角
| /// </summary>
| public class CustomCameraStatus3d : CustomLayer
| {
| /// <summary>
| /// 视角
| /// </summary>
| public CameraStatus3d CameraStatus3d { get; set; }
|
| /// <summary>
| /// 关键帧(拓展功能)
| /// </summary>
| public KeyFrame KeyFrame { get; set; }
|
| /// <summary>
| /// 缩略图
| /// </summary>
| public string ThumbnailImage { get; set; }
| }
|
|
| }
|
|