2021-11-27 00:53:57 +01:00
|
|
|
#pragma once
|
2019-02-06 11:12:29 +01:00
|
|
|
|
2019-02-06 12:01:33 +01:00
|
|
|
namespace Sapphire::Common
|
2019-02-06 11:12:29 +01:00
|
|
|
{
|
2019-02-06 12:01:33 +01:00
|
|
|
struct FFXIVARR_POSITION3
|
2019-02-06 11:12:29 +01:00
|
|
|
{
|
2019-02-06 12:01:33 +01:00
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
float z;
|
|
|
|
inline bool operator == ( const FFXIVARR_POSITION3& target ) const;
|
2024-06-26 20:48:20 +02:00
|
|
|
FFXIVARR_POSITION3 operator - ( const FFXIVARR_POSITION3& target ) const;
|
2019-02-06 12:01:33 +01:00
|
|
|
};
|
2019-02-06 11:12:29 +01:00
|
|
|
|
2021-11-27 00:53:57 +01:00
|
|
|
struct Vector3
|
|
|
|
{
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
float z;
|
|
|
|
float reserve;
|
|
|
|
inline bool operator == ( const Vector3& target ) const;
|
2024-06-26 20:48:20 +02:00
|
|
|
Vector3 operator - ( const Vector3& target ) const;
|
2021-11-27 00:53:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Matrix33
|
|
|
|
{
|
|
|
|
float m[ 3 ][ 3 ];
|
|
|
|
};
|
|
|
|
}
|