cesium-native 0.43.0
Loading...
Searching...
No Matches
CullingResult.h
1#pragma once
2
3#include "Library.h"
4
5namespace CesiumGeometry {
6
10enum 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.
@ 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.