Changed: Use -200.f instead of float(-200)

--HG--
branch : develop
This commit is contained in:
kervala 2016-12-04 20:00:37 +01:00
parent 90b57e684b
commit 85b9398668
2 changed files with 14 additions and 8 deletions

View file

@ -52,11 +52,13 @@ int EPM_BevelMouseProc::proc(HWND hwnd, int msg, int point, int flags, IPoint2 m
case MOUSE_MOVE:
if (point == 1)
{
p0 = vpt->MapScreenToView(om, float(-200));
p0 = vpt->MapScreenToView(om, -200.f);
// sca 1999.02.24: find worldspace point with om's x value and m's y value
m2.x = om.x;
m2.y = m.y;
p1 = vpt->MapScreenToView(m2, float(-200));
p1 = vpt->MapScreenToView(m2, -200.f);
amount = Length(p1 - p0);
ln = IsDlgButtonChecked(po->hOpsPanel, IDC_EM_EXTYPE_B);
if (om.y < m.y)
@ -73,11 +75,13 @@ int EPM_BevelMouseProc::proc(HWND hwnd, int msg, int point, int flags, IPoint2 m
}
else if (point == 2)
{
p0 = vpt->MapScreenToView(om, float(-200));
p0 = vpt->MapScreenToView(om, -200.f);
// sca 1999.02.24: find worldspace point with om's x value and m's y value
m2.x = om.x;
m2.y = m.y;
p1 = vpt->MapScreenToView(m2, float(-200));
p1 = vpt->MapScreenToView(m2, -200.f);
if (IsDlgButtonChecked(po->hOpsPanel, IDC_EP_SM_SMOOTH))
ln = 0;
else if (IsDlgButtonChecked(po->hOpsPanel, IDC_EP_SM_SMOOTH2))

View file

@ -43,11 +43,13 @@ int EPM_ExtrudeMouseProc::proc(HWND hwnd, int msg, int point, int flags, IPoint2
break;
case MOUSE_MOVE:
p0 = vpt->MapScreenToView(om, float(-200));
p0 = vpt->MapScreenToView(om, -200.f);
// sca 1999.02.24: Find m's projection in om's vertical axis:
m2.x = om.x;
m2.y = m.y;
p1 = vpt->MapScreenToView(m2, float(-200));
p1 = vpt->MapScreenToView(m2, -200.f);
amount = Length(p1 - p0);
if (m.y > om.y)
amount *= -1.0f;