Fixed bug in Geometry.hpp

This commit is contained in:
OmniaX-Dev 2025-11-01 01:08:15 +01:00
parent b49e2d9543
commit af3ad601dc
2 changed files with 5 additions and 5 deletions

View file

@ -1 +1 @@
1901 1902

View file

@ -34,7 +34,7 @@ namespace ostd
typedef Point<double> DPoint; typedef Point<double> DPoint;
typedef Point<uint32_t> UIPoint; typedef Point<uint32_t> UIPoint;
typedef Point<uint64_t> UI64Point; typedef Point<uint64_t> UI64Point;
typedef Point<float> UI16Point; typedef Point<uint16_t> UI16Point;
typedef Point<uint8_t> UI8Point; typedef Point<uint8_t> UI8Point;
typedef Point<int32_t> IPoint; typedef Point<int32_t> IPoint;
typedef Point<int64_t> I64Point; typedef Point<int64_t> I64Point;