From 932dbba1fe38b821d4de9b9ba64070e00e65549f Mon Sep 17 00:00:00 2001 From: Mikulas Florek Date: Fri, 21 Jun 2024 18:38:13 +0200 Subject: [PATCH] use floats by default --- src/ofbx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ofbx.h b/src/ofbx.h index d955416..6c0edef 100644 --- a/src/ofbx.h +++ b/src/ofbx.h @@ -70,7 +70,7 @@ struct FVec4 { float x, y, z, w; }; struct FMatrix { float m[16]; }; struct FQuat{ float x, y, z, w; }; -#ifdef OFBX_SINGLE_PRECISION +#ifndef OFBX_DOUBLE_PRECISION // use floats for vertices, normals, uvs, ... using Vec2 = FVec2; using Vec3 = FVec3;