- Version 2.30.3
- Version 0.12.0
Using SDL2 dll.
Download SDL3 from github.
-lib // zig default
--sdl3 // folder
---include
---lib
It config in build.zig
zig build
zig build run
Convert c to zig type float, integer.
// int < float
rect.x = 290 + @as(i32, @intFromFloat(r * @cos(a)));
Old
rect.x = 290 + @floatToInt(i32, r * @cos(a));
rect.y = 170 + @floatToInt(i32, r * @sin(a));
New
rect.x = 290 + @as(i32, @intFromFloat(r * @cos(a)));
rect.y = 170 + @as(i32, @intFromFloat(r * @sin(a)));