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