cesium-native  0.41.0
CullingResult.h
1 #pragma once
2 
3 #include "Library.h"
4 
5 namespace CesiumGeometry {
6 
10 enum class CESIUMGEOMETRY_API CullingResult {
14  Outside = -1,
15 
23  Intersecting = 0,
24 
28  Inside = 1
29 };
30 
31 } // namespace CesiumGeometry
Basic geometry classes for Cesium.
CullingResult
The result of culling an object.
Definition: CullingResult.h:10
@ Outside
Indicates that an object lies completely outside the culling volume.
@ Inside
Indicates that an object lies completely inside the culling volume.
@ Intersecting
Indicates that an object intersects with the boundary of the culling volume.