Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/SB/Core/x/xMath2.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ struct xVec2
xVec2 operator-(const xVec2&) const;
};

struct _xMat2x2
{
xVec2 right;
xVec2 up;
};

F32 xVec2Dist(F32 x1, F32 y1, F32 x2, F32 y2);
F32 xVec2Dot(const xVec2* a, const xVec2* b);
void xVec2Init(xVec2* v, F32 _x, F32 _y);
Expand Down
Loading
Loading