UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
RecastLargeWorldCoordinates.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2// Modified version of Recast/Detour's source file
3
4#pragma once
5
6#include <limits>
7
8#define RC_LARGE_WORLD_COORDINATES_DISABLED 0
9
10#if RC_LARGE_WORLD_COORDINATES_DISABLED
11
12typedef float rcReal;
13
14#else // RC_LARGE_WORLD_COORDINATES_DISABLED
15
16typedef double rcReal;
17
18#endif // RC_LARGE_WORLD_COORDINATES_DISABLED
19
20constexpr rcReal RC_REAL_MAX = std::numeric_limits<rcReal>::max();
21
constexpr rcReal RC_REAL_MAX
Definition RecastLargeWorldCoordinates.h:20
double rcReal
Definition RecastLargeWorldCoordinates.h:16