Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementation of Matrix Structure #37

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3f26a68
Framework for Matrix
Allan-Feng Feb 10, 2023
443e2d6
Merge branch 'main' of https://github.com/Allan-Feng/glibby
Allan-Feng Feb 10, 2023
736c558
Framework for Matrix(with Vec added back)
Allan-Feng Feb 10, 2023
32eb4e0
Matrix Structures construction and basic functions for matrix manipul…
Allan-Feng Feb 10, 2023
7479f59
Matrix Structures construction and basic functions for matrix manipul…
Allan-Feng Feb 10, 2023
04b3fd3
Merge branch '2020wmarvil:main' into main
Allan-Feng Feb 10, 2023
014d97d
Merge branch '2020wmarvil:main' into main
Allan-Feng Feb 14, 2023
d65aea7
Matrix determinant
Allan-Feng Feb 14, 2023
caf74fd
Matrix Overloaded Stream Operators >> and <<
Allan-Feng Feb 14, 2023
1754668
Partial Specialization for MAT2x2,3x3, and 4x4, and LookAt function f…
Allan-Feng Feb 24, 2023
a8685b4
Merge branch '2020wmarvil:main' into main
Allan-Feng Feb 24, 2023
2d9d5db
Merge branch 'main' of https://github.com/Allan-Feng/glibby
Allan-Feng Feb 24, 2023
1d7eabb
minor fixes for mat2x2 and 3x3 on vector operator[] use
Allan-Feng Feb 24, 2023
def6bdd
Orthogonal and Perspective Projection implementation
Allan-Feng Mar 17, 2023
10679a5
Creating test cases for MAT2x2 and MAT3x3, and creating operator== fo…
Allan-Feng Mar 24, 2023
3967046
Completion of MAT4x4 test cases
Allan-Feng Apr 4, 2023
133373e
Merge branch '2020wmarvil:main' into main
Allan-Feng Apr 4, 2023
c2353fb
Merge branch '2020wmarvil:main' into main
Allan-Feng Apr 21, 2023
baa437d
Fixing minor errors and adding inline to orthographic and perspective…
Allan-Feng Apr 22, 2023
377a1c0
Merge branch 'main' of https://github.com/Allan-Feng/glibby
Allan-Feng Apr 22, 2023
f34a3db
Minor changes to formatting
Allan-Feng Apr 26, 2023
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
2 changes: 1 addition & 1 deletion examples/vk_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ int main()
glibby::Window window(800, 600, "Demo Window");
window.Run();
glibby::Window::Terminate();
}
}
Loading