- Timestamp:
- Mar 13, 2025 6:38:55 AM (2 months ago)
- svn:sync-xref-src-repo-rev:
- 167934
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Stub/VBoxStub.cpp
r108416 r108542 1172 1172 1173 1173 /* Calculate the position of the spinning circle. */ 1174 unsigned const x = uCenterX + static_cast<int>(uRadius * cos(pCtx->uDotAngle * M_PI/ 180));1175 unsigned const y = uCenterY + static_cast<int>(uRadius * sin(pCtx->uDotAngle * M_PI/ 180));1174 unsigned const x = uCenterX + static_cast<int>(uRadius * cos(pCtx->uDotAngle * 3.14159 /* PI */ / 180)); 1175 unsigned const y = uCenterY + static_cast<int>(uRadius * sin(pCtx->uDotAngle * 3.14159 /* PI */ / 180)); 1176 1176 1177 1177 Gdiplus::SolidBrush brush(Gdiplus::Color(255, 0, 0, 100)); /* Dark blue dot. */
Note:
See TracChangeset
for help on using the changeset viewer.