개정판 01cbc243
Arrow Text 생성시 Leader선이 가까운 Point로 이동하지 않는 문제 조치
KCOM/Views/MainMenu.xaml.cs | ||
---|---|---|
1780 | 1780 |
{ |
1781 | 1781 |
control.EndPoint = currentCanvasDrawingMouseMovePoint; |
1782 | 1782 |
Point tempPoint = control.EndPoint; |
1783 |
|
|
1783 |
//control.MidPoint = currentCanvasDrawingMouseMovePoint; |
|
1784 | 1784 |
|
1785 | 1785 |
if (ViewerDataModel.Instance.checkAxis || ViewerDataModel.Instance.IsPressShift) |
1786 | 1786 |
{ |
... | ... | |
1791 | 1791 |
{ |
1792 | 1792 |
ViewerDataModel.Instance.AngleValue = MathSet.returnAngleString(control.StartPoint, ref tempPoint, false); |
1793 | 1793 |
} |
1794 |
control.MidPoint = MathSet.getMiddlePoint(control.StartPoint, control.EndPoint); |
|
1794 | 1795 |
control.isFixed = true; |
1795 | 1796 |
|
1796 | 1797 |
control.PointSet = new List<Point> |
... | ... | |
1848 | 1849 |
{ |
1849 | 1850 |
ViewerDataModel.Instance.AngleValue = MathSet.returnAngleString(control.StartPoint, ref tempPoint, false); |
1850 | 1851 |
} |
1852 |
|
|
1853 |
control.MidPoint = MathSet.getMiddlePoint(control.StartPoint, control.EndPoint); |
|
1851 | 1854 |
control.PointSet = new List<Point> |
1852 | 1855 |
{ |
1853 | 1856 |
control.StartPoint, |
... | ... | |
1903 | 1906 |
{ |
1904 | 1907 |
ViewerDataModel.Instance.AngleValue = MathSet.returnAngleString(control.StartPoint, ref tempPoint, false); |
1905 | 1908 |
} |
1909 |
control.MidPoint = MathSet.getMiddlePoint(control.StartPoint, control.EndPoint); |
|
1906 | 1910 |
control.PointSet = new List<Point> |
1907 | 1911 |
{ |
1908 | 1912 |
control.StartPoint, |
내보내기 Unified diff