Fixed undefined reference in Bezier curve. Other additions and fixes included.
This commit is contained in:
@@ -1,3 +1,14 @@
|
||||
/// Josh's 3D Math Library
|
||||
/// A C++20 Library for 3D Math, Computer Graphics, and Scientific Computing.
|
||||
/// Developed and Maintained by Josh O'Leary @ Redacted Software.
|
||||
/// Special Thanks to William Tomasine II and Maxine Hayes.
|
||||
/// (c) 2024 Redacted Software
|
||||
/// This work is dedicated to the public domain.
|
||||
|
||||
/// @file AABB.hpp
|
||||
/// @desc The Axis-Aligned Bounding Box geometry object.
|
||||
/// @edit 2024-08-01
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <format>
|
||||
|
@@ -1,3 +1,15 @@
|
||||
/// Josh's 3D Math Library
|
||||
/// A C++20 Library for 3D Math, Computer Graphics, and Scientific Computing.
|
||||
/// Developed and Maintained by Josh O'Leary @ Redacted Software.
|
||||
/// Special Thanks to William Tomasine II and Maxine Hayes.
|
||||
/// (c) 2024 Redacted Software
|
||||
/// This work is dedicated to the public domain.
|
||||
|
||||
/// @file AABB2D.hpp
|
||||
/// @desc A 2D Axis-Aligned Bounding Box structure.
|
||||
/// @edit 2024-08-01
|
||||
/// @note On backlog, low-priority.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <J3ML/LinearAlgebra/Vector2.hpp>
|
||||
|
@@ -1,5 +1,15 @@
|
||||
#pragma once
|
||||
/// Josh's 3D Math Library
|
||||
/// A C++20 Library for 3D Math, Computer Graphics, and Scientific Computing.
|
||||
/// Developed and Maintained by Josh O'Leary @ Redacted Software.
|
||||
/// Special Thanks to William Tomasine II and Maxine Hayes.
|
||||
/// (c) 2024 Redacted Software
|
||||
/// This work is dedicated to the public domain.
|
||||
|
||||
/// @file Capsule.hpp
|
||||
/// @desc The Capsule geometry object.
|
||||
/// @edit 2024-08-01
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <J3ML/LinearAlgebra/Common.hpp>
|
||||
#include <J3ML/Geometry/Common.hpp>
|
||||
|
@@ -7,7 +7,7 @@
|
||||
|
||||
/// @file Circle.hpp
|
||||
/// @desc The Circle geometry object.
|
||||
/// @edit 2024-07-06
|
||||
/// @edit 2024-08-01
|
||||
|
||||
#pragma once
|
||||
|
||||
|
@@ -1,3 +1,14 @@
|
||||
/// Josh's 3D Math Library
|
||||
/// A C++20 Library for 3D Math, Computer Graphics, and Scientific Computing.
|
||||
/// Developed and Maintained by Josh O'Leary @ Redacted Software.
|
||||
/// Special Thanks to William Tomasine II and Maxine Hayes.
|
||||
/// (c) 2024 Redacted Software
|
||||
/// This work is dedicated to the public domain.
|
||||
|
||||
/// @file Polygon.hpp
|
||||
/// @desc The Polygon geometry object.
|
||||
/// @edit 2024-08-01
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <J3ML/Geometry/Common.hpp>
|
||||
|
Reference in New Issue
Block a user