22 lines
522 B
C++
22 lines
522 B
C++
#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
|