mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Use -200.f instead of float(-200)
--HG-- branch : develop
This commit is contained in:
parent
90b57e684b
commit
85b9398668
2 changed files with 14 additions and 8 deletions
|
@ -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)
|
||||
|
@ -70,14 +72,16 @@ int EPM_BevelMouseProc::proc(HWND hwnd, int msg, int point, int flags, IPoint2 m
|
|||
ReleaseISpinner(spin);
|
||||
}
|
||||
ip->RedrawViews(ip->GetTime(), REDRAW_INTERACTIVE);
|
||||
}
|
||||
}
|
||||
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))
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue