Cogs.Core
BoundingBox.h
1#pragma once
2
3#include "Foundation/Geometry/BoundingBox.hpp"
4
5namespace Cogs::Core::EchoSounder
6{
7
8 void includeInBBox(Context* context,
9 Geometry::BoundingBox& bbox,
10 const float* vertices,
11 size_t vertexStride,
12 const size_t numVertices,
13 const size_t taskSize = 10000);
14
15
16}