mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
21 lines
611 B
C
21 lines
611 B
C
//
|
|
// util.h
|
|
// interface
|
|
//
|
|
// Created by Philip Rosedale on 8/24/12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#ifndef interface_util_h
|
|
#define interface_util_h
|
|
#include "glm/glm.hpp"
|
|
|
|
float randFloat();
|
|
void render_world_box();
|
|
void drawtext(int x, int y, float scale, float rotate, float thick, int mono, char *string,
|
|
float r=1.0, float g=1.0, float b=1.0);
|
|
void drawvec3(int x, int y, float scale, float rotate, float thick, int mono, glm::vec3 vec,
|
|
float r=1.0, float g=1.0, float b=1.0);
|
|
double diffclock(timeval clock1,timeval clock2);
|
|
|
|
#endif
|