8 lines
212 B
C
8 lines
212 B
C
// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#define METERS_TO_UNITS(meters) (meters * 100.0f)
|
|
#define UNITS_TO_METERS(units) (units * 0.01f)
|
|
#define UNITS_TO_METERS_SCALE 0.01f
|