fix: optional<BrepModel> dereference with ->
CI / Build & Test (push) Failing after 31s
CI / Release Build (push) Failing after 31s
Build & Test / build-and-test (push) Has been cancelled
Build & Test / python-bindings (push) Has been cancelled

This commit is contained in:
茂之钳
2026-07-24 14:03:20 +00:00
parent 12db7d3e5a
commit 2f1c67d7b3
+1 -1
View File
@@ -14,7 +14,7 @@ core::AABB3D node_world_bounds(const AssemblyNode* node) {
// For root's direct children, this IS the world transform.
const auto& T = node->local_transform;
if (node->model.has_value()) {
if (node->model->has_value()) {
core::AABB3D local_bb = node->model->bounds();
core::Point3D corners[8] = {
local_bb.min(),