Removed dumb cerr output
This commit is contained in:
parent
59f1164458
commit
da82dbee07
@ -294,7 +294,6 @@ void Vector2<double>::NormalizeSelf()
|
|||||||
template<>
|
template<>
|
||||||
void Vector2<int>::NormalizeSelf()
|
void Vector2<int>::NormalizeSelf()
|
||||||
{
|
{
|
||||||
std::cerr << "Stop normalizing int-vectors!!" << std::endl;
|
|
||||||
x = 0;
|
x = 0;
|
||||||
y = 0;
|
y = 0;
|
||||||
|
|
||||||
|
@ -222,7 +222,6 @@ namespace Eule {
|
|||||||
template<>
|
template<>
|
||||||
void Vector3<int>::NormalizeSelf()
|
void Vector3<int>::NormalizeSelf()
|
||||||
{
|
{
|
||||||
std::cerr << "Stop normalizing int-vectors!!" << std::endl;
|
|
||||||
x = 0;
|
x = 0;
|
||||||
y = 0;
|
y = 0;
|
||||||
z = 0;
|
z = 0;
|
||||||
@ -239,7 +238,7 @@ namespace Eule {
|
|||||||
(::Eule::Math::Similar(x, other.x, epsilon)) &&
|
(::Eule::Math::Similar(x, other.x, epsilon)) &&
|
||||||
(::Eule::Math::Similar(y, other.y, epsilon)) &&
|
(::Eule::Math::Similar(y, other.y, epsilon)) &&
|
||||||
(::Eule::Math::Similar(z, other.z, epsilon))
|
(::Eule::Math::Similar(z, other.z, epsilon))
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
|
@ -257,7 +257,6 @@ void Vector4<double>::NormalizeSelf()
|
|||||||
template<>
|
template<>
|
||||||
void Vector4<int>::NormalizeSelf()
|
void Vector4<int>::NormalizeSelf()
|
||||||
{
|
{
|
||||||
std::cerr << "Stop normalizing int-vectors!!" << std::endl;
|
|
||||||
x = 0;
|
x = 0;
|
||||||
y = 0;
|
y = 0;
|
||||||
z = 0;
|
z = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user