Added EditorConfig file
This commit is contained in:
parent
95d8597377
commit
56f948a90a
4 changed files with 16 additions and 7 deletions
9
.editorconfig
Normal file
9
.editorconfig
Normal file
|
@ -0,0 +1,9 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
|
||||
[*.{h,hpp,c,cpp}]
|
||||
indent_style = tab
|
||||
indent_size = 4
|
10
src/main.cpp
10
src/main.cpp
|
@ -228,11 +228,11 @@ void keyUp(unsigned char key, int x, int y) {
|
|||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
glutInit(&argc, argv);
|
||||
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
|
||||
glutInitWindowSize(600, 600);
|
||||
glutInitWindowPosition(glutGet(GLUT_SCREEN_WIDTH) * 0.6, (glutGet(GLUT_SCREEN_HEIGHT) - 600) * 0.5);
|
||||
glutCreateWindow("Pong");
|
||||
glutInit(&argc, argv);
|
||||
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
|
||||
glutInitWindowSize(600, 600);
|
||||
glutInitWindowPosition(glutGet(GLUT_SCREEN_WIDTH) * 0.6, (glutGet(GLUT_SCREEN_HEIGHT) - 600) * 0.5);
|
||||
glutCreateWindow("Pong");
|
||||
glutSetKeyRepeat(GLUT_KEY_REPEAT_OFF);
|
||||
glutKeyboardFunc(keyDown);
|
||||
glutKeyboardUpFunc(keyUp);
|
||||
|
|
|
@ -86,4 +86,4 @@ namespace PW {
|
|||
inline std::array<GLfloat, 2> nr(GLfloat x, GLfloat y) {
|
||||
return PW::toRelative(x, y, PW::NONE_RIGHT);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,4 +13,4 @@ namespace Utils {
|
|||
constexpr T toRad(T deg) {
|
||||
return deg * PI / 180;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue