mirror of
https://github.com/libAthena/athena.git
synced 2025-08-12 23:19:10 +00:00
26 lines
387 B
C++
26 lines
387 B
C++
#pragma once
|
|
|
|
#include <cinttypes>
|
|
#include <cstdint>
|
|
|
|
// Vector types
|
|
#include "simd/simd.hpp"
|
|
struct atVec2f {
|
|
athena::simd<float> simd;
|
|
};
|
|
struct atVec3f {
|
|
athena::simd<float> simd;
|
|
};
|
|
struct atVec4f {
|
|
athena::simd<float> simd;
|
|
};
|
|
struct atVec2d {
|
|
athena::simd<double> simd;
|
|
};
|
|
struct atVec3d {
|
|
athena::simd<double> simd;
|
|
};
|
|
struct atVec4d {
|
|
athena::simd<double> simd;
|
|
};
|