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