1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include "System/float4.h"
#include "System/creg/creg_cond.h"
#include "System/SpringMath.h"
CR_BIND(float4, )
CR_REG_METADATA(float4, (CR_MEMBER(x), CR_MEMBER(y), CR_MEMBER(z), CR_MEMBER(w)))
// ensure that we use a continuous block of memory
// (required for passing to gl functions)
static_assert(sizeof(float4) == 4 * sizeof(float), "");
bool float4::operator == (const float4& f) const
{
#define eps float3::cmp_eps()
return (epscmp(x, f.x, eps) && epscmp(y, f.y, eps) && epscmp(z, f.z, eps) && epscmp(w, f.w, eps));
#undef eps
}
|