mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
20 lines
347 B
C
20 lines
347 B
C
//
|
|
// world.h
|
|
// interface
|
|
//
|
|
// Created by Philip Rosedale on 8/23/12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
// Simulation happens in positive cube with edge of size WORLD_SIZE
|
|
|
|
#ifndef interface_world_h
|
|
#define interface_world_h
|
|
|
|
const float WORLD_SIZE = 10.0;
|
|
#define PI 3.14159265
|
|
|
|
|
|
float randFloat();
|
|
|
|
#endif
|