using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Bimface { /// /// 路径漫游关键帧 /// public class KeyFrame { /// /// /// public string id { get; set; } /// /// /// public CoordinateDouble3d position { get; set; } /// /// /// public CoordinateDouble3d target { get; set; } public string coordinateSystem { get; set; } } }