Implemented More Documentation

This commit is contained in:
2024-04-09 17:07:38 -04:00
parent d7b2157b0c
commit bbd3e8b75d
9 changed files with 581 additions and 78 deletions

View File

@@ -8,11 +8,9 @@
namespace J3ML::LinearAlgebra {
// A 3D (x, y, z) ordered pair.
/// A 3D (x, y, z) ordered pair.
class Vector3 {
public:
float x = 0;
float y = 0;
float z = 0;