summaryrefslogtreecommitdiff
path: root/src/vector.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-29 17:24:52 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-29 17:59:57 +0300
commitf315432679f760b71505e74dcb2185b7aef7a906 (patch)
tree07d45620464a2542cb28fbe773f652501e6ee6fb /src/vector.h
parentcccb3e11663eb415b9b6c9a184e1c17762a2d989 (diff)
downloadplus-f315432679f760b71505e74dcb2185b7aef7a906.tar.gz
plus-f315432679f760b71505e74dcb2185b7aef7a906.tar.bz2
plus-f315432679f760b71505e74dcb2185b7aef7a906.tar.xz
plus-f315432679f760b71505e74dcb2185b7aef7a906.zip
change smaller letter literalt into capital letter.
Diffstat (limited to 'src/vector.h')
-rw-r--r--src/vector.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/vector.h b/src/vector.h
index 02d53d893..4ba524c0d 100644
--- a/src/vector.h
+++ b/src/vector.h
@@ -40,15 +40,15 @@ class Vector final
* Constructor.
*/
Vector():
- x(0.0f),
- y(0.0f),
- z(0.0f)
+ x(0.0F),
+ y(0.0F),
+ z(0.0F)
{}
/**
* Constructor.
*/
- Vector(const float x0, const float y0, const float z0 = 0.0f) :
+ Vector(const float x0, const float y0, const float z0 = 0.0F) :
x(x0),
y(y0),
z(z0)
@@ -69,7 +69,7 @@ class Vector final
*/
bool isNull() const A_WARN_UNUSED
{
- return x == 0.0f && y == 0.0f && z == 0.0f;
+ return x == 0.0F && y == 0.0F && z == 0.0F;
}
/**