forked from LeonFedotov/L.A.S.E.R.-TAG-GRL
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/danzeeeman/L.A.S.E.R.-TAG…
- Loading branch information
Showing
4 changed files
with
93 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,81 @@ | ||
########################### | ||
# ignore generated binaries | ||
# but not the data folder | ||
########################### | ||
|
||
*/bin/* | ||
!*/bin/data/ | ||
|
||
######### | ||
# general | ||
######### | ||
|
||
*/[Bb]uild/ | ||
*/[Oo]bj/ | ||
*.o | ||
*/[Dd]ebug*/ | ||
*/[Rr]elease*/ | ||
*.mode* | ||
*.app/ | ||
*.pyc | ||
.svn/ | ||
*.log | ||
|
||
######################## | ||
# IDE files which should | ||
# be ignored | ||
######################## | ||
|
||
# XCode | ||
*.pbxuser | ||
*.perspective | ||
*.perspectivev3 | ||
*.mode1v3 | ||
*.mode2v3 | ||
# XCode 4 | ||
xcuserdata | ||
*.xcworkspace | ||
|
||
# Code::Blocks | ||
*.depend | ||
*.layout | ||
|
||
# Visual Studio | ||
*.sdf | ||
*.opensdf | ||
*.suo | ||
*.pdb | ||
*.ilk | ||
*.aps | ||
ipch/ | ||
|
||
# Eclipse | ||
.metadata | ||
local.properties | ||
.externalToolBuilders | ||
|
||
################## | ||
# operating system | ||
################## | ||
|
||
# Linux | ||
*~ | ||
# KDE | ||
.directory | ||
.AppleDouble | ||
|
||
# OSX | ||
.DS_Store | ||
*.swp | ||
*~.nib | ||
# Thumbnails | ||
._* | ||
|
||
# Windows | ||
# Image file caches | ||
Thumbs.db | ||
# Folder config file | ||
Desktop.ini | ||
|
||
# Android | ||
.csettings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#ifndef _MISC_UTILS | ||
#define _MISC_UTILS | ||
|
||
static float floatAbs(float input){ | ||
|
||
if(input < 0) return input * -1.0; | ||
return input; | ||
} | ||
|
||
#endif | ||
|