AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
XCharts.LineArrow Class Reference

More...

Inheritance diagram for XCharts.LineArrow:
Collaboration diagram for XCharts.LineArrow:

Public Types

enum  Position { Position.End, Position.Start }
 

Properties

bool show [get, set]
 Whether to show the arrow. 是否显示箭头。 More...
 
Position position [get, set]
 The position of arrow. 箭头位置。 More...
 
Arrow arrow [get, set]
 the arrow of line. 箭头。 More...
 
- Properties inherited from XCharts.ChartComponent
virtual bool vertsDirty [get]
 图表重绘标记。 More...
 
virtual bool componentDirty [get]
 组件重新初始化标记。 More...
 
bool anyDirty [get]
 需要重绘图表或重新初始化组件。 More...
 
Painter painter [get, set]
 
Action refreshComponent [get, set]
 
GameObject gameObject [get, set]
 

Additional Inherited Members

- Public Member Functions inherited from XCharts.ChartComponent
virtual void SetVerticesDirty ()
 
virtual void ClearVerticesDirty ()
 
virtual void SetComponentDirty ()
 
virtual void ClearComponentDirty ()
 
virtual void ClearDirty ()
 
virtual void SetAllDirty ()
 
- Protected Attributes inherited from XCharts.ChartComponent
bool m_VertsDirty
 
bool m_ComponentDirty
 
Painter m_Painter
 

Detailed Description

Definition at line 16 of file LineArrow.cs.

Member Enumeration Documentation

◆ Position

Enumerator
End 

末端箭头

Start 

头端箭头

Definition at line 18 of file LineArrow.cs.

19  {
23  End,
27  Start
28  }

Property Documentation

◆ arrow

Arrow XCharts.LineArrow.arrow
getset

the arrow of line. 箭头。

Definition at line 64 of file LineArrow.cs.

64  {
65  get { return m_Arrow; }
66  set { if (PropertyUtil.SetClass(ref m_Arrow, value)) SetVerticesDirty(); }
67  }

◆ position

Position XCharts.LineArrow.position
getset

The position of arrow. 箭头位置。

Definition at line 54 of file LineArrow.cs.

54  {
55  get { return m_Position; }
56  set { if (PropertyUtil.SetStruct(ref m_Position, value)) SetVerticesDirty(); }
57  }

◆ show

bool XCharts.LineArrow.show
getset

Whether to show the arrow. 是否显示箭头。

Definition at line 45 of file LineArrow.cs.

45  {
46  get { return m_Show; }
47  set { if (PropertyUtil.SetStruct(ref m_Show, value)) SetVerticesDirty(); }
48  }

The documentation for this class was generated from the following file: