From a70e83ae2e6d6fe80f8d8e2dfe26fbec548a833e Mon Sep 17 00:00:00 2001 From: Chris Gerth Date: Tue, 23 Jan 2024 23:28:17 -0600 Subject: [PATCH] [glass] Update field size defaults in Field2D.cpp (#6298) Looks like the field length is longer in 2024. Used the onshape model to measure the size. --- glass/src/lib/native/cpp/other/Field2D.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glass/src/lib/native/cpp/other/Field2D.cpp b/glass/src/lib/native/cpp/other/Field2D.cpp index dfe869276d..67d021200f 100644 --- a/glass/src/lib/native/cpp/other/Field2D.cpp +++ b/glass/src/lib/native/cpp/other/Field2D.cpp @@ -222,8 +222,8 @@ class ObjectInfo { class FieldInfo { public: - static constexpr auto kDefaultWidth = 15.98_m; - static constexpr auto kDefaultHeight = 8.21_m; + static constexpr auto kDefaultWidth = 16.541052_m; + static constexpr auto kDefaultHeight = 8.211_m; explicit FieldInfo(Storage& storage);