This commit is contained in:
2024-01-19 16:12:56 -05:00
parent 4626f5a37f
commit eec161769c

View File

@@ -34,8 +34,14 @@ namespace JGL {
float value; float value;
}; };
Vector2 ScreenToViewport(const Vector2& v); Vector2 ScreenToViewport(const Vector2& v)
Vector2 ViewportToScreen(const Vector2& v); {
// TODO: Implement matrix transformation
}
Vector2 ViewportToScreen(const Vector2& v)
{
// TODO: Implement matrix transformation
}
void DrawPixel2D(const Color3 &, int x, int y); void DrawPixel2D(const Color3 &, int x, int y);
void DrawPixel2D(const Color3& color, const Vector2 &coordinates); void DrawPixel2D(const Color3& color, const Vector2 &coordinates);