From 204f8204f15b66e6ea129f531e81ce03b2f7826e Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Fri, 20 Sep 2024 14:01:02 +0800 Subject: [PATCH] change float4 to double4 --- thermion_dart/native/include/APIBoundaryTypes.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/thermion_dart/native/include/APIBoundaryTypes.h b/thermion_dart/native/include/APIBoundaryTypes.h index 61bd908f..b811c330 100644 --- a/thermion_dart/native/include/APIBoundaryTypes.h +++ b/thermion_dart/native/include/APIBoundaryTypes.h @@ -75,11 +75,11 @@ extern "C" typedef struct TMaterialKey TMaterialKey; typedef struct { - float x; - float y; - float z; - float w; - } float4; + double x; + double y; + double z; + double w; + } double4; typedef struct { double col1[4];