mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 08:21:24 +02:00
remove the unused outstring method
This commit is contained in:
parent
158270f20d
commit
6a7b40629c
2 changed files with 0 additions and 7 deletions
|
@ -82,12 +82,6 @@ void render_world_box()
|
||||||
glEnd();
|
glEnd();
|
||||||
}
|
}
|
||||||
|
|
||||||
void outstring(char * string, int length) {
|
|
||||||
char out[length];
|
|
||||||
memcpy(out, string, length);
|
|
||||||
std::cout << out << "\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
double diffclock(timeval *clock1,timeval *clock2)
|
double diffclock(timeval *clock1,timeval *clock2)
|
||||||
{
|
{
|
||||||
double diffms = (clock2->tv_sec - clock1->tv_sec) * 1000.0;
|
double diffms = (clock2->tv_sec - clock1->tv_sec) * 1000.0;
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
float azimuth_to(glm::vec3 head_pos, glm::vec3 source_pos);
|
float azimuth_to(glm::vec3 head_pos, glm::vec3 source_pos);
|
||||||
float angle_to(glm::vec3 head_pos, glm::vec3 source_pos, float render_yaw, float head_yaw);
|
float angle_to(glm::vec3 head_pos, glm::vec3 source_pos, float render_yaw, float head_yaw);
|
||||||
|
|
||||||
void outstring(char * string, int length);
|
|
||||||
float randFloat();
|
float randFloat();
|
||||||
void render_world_box();
|
void render_world_box();
|
||||||
void render_vector(glm::vec3 * vec);
|
void render_vector(glm::vec3 * vec);
|
||||||
|
|
Loading…
Reference in a new issue