This commit is contained in:
2024-05-07 02:12:16 +03:00
parent 456aa1a368
commit f5105ad366
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
namespace uml namespace uml
{ {
class Vector4 final : public Vector3 class Vector4 : public Vector3
{ {
public: public:
float w = 0.f; float w = 0.f;

View File

@@ -2,7 +2,7 @@
// Vector4.cpp // Vector4.cpp
// //
#include "Vector4.h" #include "uml/Vector4.h"
#include <cmath> #include <cmath>
namespace uml namespace uml