prime/include/Kyoto/Math/CloseEnough.hpp
Luke Street 03357b2acd Begin decompiling CCameraFilterPass::DrawWideScreen
Former-commit-id: 44d675d87dede70d42dee8baa34d4ef52bef7921
2022-07-02 01:30:11 -04:00

13 lines
335 B
C++

#ifndef __CLOSEENOUGH_HPP__
#define __CLOSEENOUGH_HPP__
#include "types.h"
#include "CVector2f.hpp"
#include "CVector3f.hpp"
static bool close_enough(const CVector2f& a, const CVector2f& b, f32 epsilon = 0.001f);
static bool close_enough(const CVector3f& a, const CVector3f& b, f32 epsilon = 0.001f);
#endif // __CLOSEENOUGH_HPP__