MeshLib
 
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
19
20} //namespace MR
int VertId
Definition MRDotNet/MRMeshFwd.h:51
#define MRMESH_API
Definition MRMesh/MRMeshFwd.h:46
represents a 3-dimentional float-typed vector
Definition MRDotNet/MRVector3.h:8
MRMESH_API VertId findDirMax(const Vector3f &dir, const MeshPart &mp, UseAABBTree u=UseAABBTree::Yes)
Definition MRCameraOrientationPlugin.h:7
UseAABBTree
Definition MRMeshDirMax.h:9
Definition MRMesh/MRMeshPart.h:11