mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-11 06:22:16 +02:00
17 lines
337 B
C
17 lines
337 B
C
//
|
|
// world.h
|
|
// interface
|
|
//
|
|
// Created by Philip Rosedale on 8/23/12.
|
|
// Copyright (c) 2012 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
// Simulation happens in positive cube with edge of size WORLD_SIZE
|
|
|
|
#ifndef __interface__world__
|
|
#define __interface__world__
|
|
|
|
const float WORLD_SIZE = 10.0;
|
|
#define PI 3.14159265
|
|
|
|
#endif
|