MeshLib Documentation
Loading...
Searching...
No Matches
MRMeshDirMax.h
Go to the documentation of this file.
1#pragma once
2
3#include "MRMeshPart.h"
4
5namespace MR
6{
7
8enum class UseAABBTree : char
9{
10 No, // AABB-tree of the mesh will not be used, even if it is available
11 Yes, // AABB-tree of the mesh will be used even if it has to be constructed
12 YesIfAlreadyConstructed, // AABB-tree of the mesh will be used if it was previously constructed and available, and will not be used otherwise
13};
14
18MRMESH_API VertId findDirMax( const Vector3f & dir, const MeshPart & mp, UseAABBTree u = UseAABBTree::Yes );
19
20} //namespace MR
#define MRMESH_API
Definition MRMesh/MRMeshFwd.h:46
MRMESH_API VertId findDirMax(const Vector3f &dir, const MeshPart &mp, UseAABBTree u=UseAABBTree::Yes)
Definition MRCameraOrientationPlugin.h:8
UseAABBTree
Definition MRMeshDirMax.h:9