whitespace cleaned up

This commit is contained in:
ZappoMan 2013-07-10 17:07:55 -07:00
parent 1831cc0de3
commit a48f353f2f

View file

@ -2610,10 +2610,6 @@ void Application::displayStats() {
}
delete []perfStatLinesArray; // we're responsible for cleanup
}
}
void Application::renderThrustAtVoxel(const glm::vec3& thrust) {
@ -2626,8 +2622,8 @@ void Application::renderThrustAtVoxel(const glm::vec3& thrust) {
glVertex3f(voxelTouched.x + thrust.x, voxelTouched.y + thrust.y, voxelTouched.z + thrust.z);
glEnd();
}
}
void Application::renderLineToTouchedVoxel() {
// Draw a teal line to the voxel I am currently dragging on
if (_mousePressed) {