v0.1.0: 初始工程骨架 — 7模块 40头文件 32源文件 17文档 Apache-2.0

This commit is contained in:
ViewDesignEngine
2026-07-23 05:27:51 +00:00
commit 02d0520aa5
133 changed files with 5350 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#pragma once
#include "vde/foundation/math_types.h"
#include "vde/foundation/tolerance.h"
namespace vde::core {
template <typename T, size_t Dim>
using Point = foundation::Point<T, Dim>;
using Point2D = foundation::Point2D;
using Point3D = foundation::Point3D;
using Point2f = foundation::Point2f;
using Point3f = foundation::Point3f;
template <typename T, size_t Dim>
using Vector = foundation::Vector<T, Dim>;
using Vector2D = foundation::Vector2D;
using Vector3D = foundation::Vector3D;
} // namespace vde::core