Fix unit tests (#11199)

* Fix tests build issue on Windows

* Fix `Http digest authentication` 404 error

* Fix `libnest2d_tests` missing dlls on Windows
This commit is contained in:
Noisyfox
2025-10-30 14:36:24 +08:00
committed by GitHub
parent b9ab8e55be
commit 99863163b2
8 changed files with 37 additions and 10 deletions

View File

@@ -489,7 +489,7 @@ static constexpr float gsizef = 100.0; // grid size in mm (box volume side leng
static constexpr float wsizef = 0.50; // grid window size in mm (roughly line segment length).
static constexpr float psizef = 0.01; // raster pixel size in mm (roughly point accuracy).
static constexpr float isoval = 0.0; // iso value threshold to use.
static constexpr size_t wsize = std::round(wsizef / psizef);
static const long wsize = std::round(wsizef / psizef);
static float period = 10.0; // gyroid "wavelength" in mm (2x line spacing).
static float freq = 2 * PI / period; // gyroid frequency in waves per mm.