// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "bvh_node_base.h" namespace embree { /*! Node with unaligned bounds */ template<typename NodeRef, int N> struct OBBNode_t : public BaseNode_t<NodeRef, N> { … }; }