namespace Yw.WinFrmUI.Bimface
|
{
|
/// <summary>
|
/// 3d点击外部信息
|
/// </summary>
|
public class ClickOut3dInfo
|
{
|
/// <summary>
|
///
|
/// </summary>
|
[JsonProperty("click", NullValueHandling = NullValueHandling.Ignore)]
|
public int Click { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[JsonProperty("screenPosition", NullValueHandling = NullValueHandling.Ignore)]
|
public Point2d ScreenPosition { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[JsonProperty("clientPosition", NullValueHandling = NullValueHandling.Ignore)]
|
public Point2d ClientPosition { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[JsonProperty("eventType", NullValueHandling = NullValueHandling.Ignore)]
|
public string EventType { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[JsonProperty("objectType", NullValueHandling = NullValueHandling.Ignore)]
|
public string ObjectType { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[JsonProperty("normal", NullValueHandling = NullValueHandling.Ignore)]
|
public Point3dVector Normal { get; set; }
|
|
|
}
|
|
|
|
|
}
|