axmol/cocos/math/Vector4.cpp

314 lines
6.1 KiB
C++
Raw Normal View History

/**
Copyright 2013 BlackBerry Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Original file from GamePlay3D: http://gameplay3d.org
This file was modified to fit the cocos2d-x project
*/
2014-04-02 10:33:07 +08:00
#include "Vector4.h"
2014-04-02 11:21:48 +08:00
#include "MathUtil.h"
2014-04-30 08:37:36 +08:00
#include "base/ccMacros.h"
2014-04-02 10:33:07 +08:00
2014-04-02 12:09:51 +08:00
NS_CC_MATH_BEGIN
2014-04-02 10:33:07 +08:00
Vector4::Vector4()
: x(0.0f), y(0.0f), z(0.0f), w(0.0f)
{
}
2014-04-16 10:58:34 +08:00
Vector4::Vector4(float xx, float yy, float zz, float ww)
: x(xx), y(yy), z(zz), w(ww)
2014-04-02 10:33:07 +08:00
{
}
Vector4::Vector4(const float* src)
{
set(src);
}
Vector4::Vector4(const Vector4& p1, const Vector4& p2)
{
set(p1, p2);
}
Vector4::Vector4(const Vector4& copy)
{
set(copy);
}
Vector4 Vector4::fromColor(unsigned int color)
{
float components[4];
int componentIndex = 0;
for (int i = 3; i >= 0; --i)
{
int component = (color >> i*8) & 0x000000ff;
components[componentIndex++] = static_cast<float>(component) / 255.0f;
}
Vector4 value(components);
return value;
}
Vector4::~Vector4()
{
}
bool Vector4::isZero() const
{
return x == 0.0f && y == 0.0f && z == 0.0f && w == 0.0f;
}
bool Vector4::isOne() const
{
return x == 1.0f && y == 1.0f && z == 1.0f && w == 1.0f;
}
float Vector4::angle(const Vector4& v1, const Vector4& v2)
{
float dx = v1.w * v2.x - v1.x * v2.w - v1.y * v2.z + v1.z * v2.y;
float dy = v1.w * v2.y - v1.y * v2.w - v1.z * v2.x + v1.x * v2.z;
float dz = v1.w * v2.z - v1.z * v2.w - v1.x * v2.y + v1.y * v2.x;
return atan2f(sqrt(dx * dx + dy * dy + dz * dz) + MATH_FLOAT_SMALL, dot(v1, v2));
}
void Vector4::add(const Vector4& v)
{
x += v.x;
y += v.y;
z += v.z;
w += v.w;
}
void Vector4::add(const Vector4& v1, const Vector4& v2, Vector4* dst)
{
GP_ASSERT(dst);
dst->x = v1.x + v2.x;
dst->y = v1.y + v2.y;
dst->z = v1.z + v2.z;
dst->w = v1.w + v2.w;
}
void Vector4::clamp(const Vector4& min, const Vector4& max)
{
GP_ASSERT(!(min.x > max.x || min.y > max.y || min.z > max.z || min.w > max.w));
// Clamp the x value.
if (x < min.x)
x = min.x;
if (x > max.x)
x = max.x;
// Clamp the y value.
if (y < min.y)
y = min.y;
if (y > max.y)
y = max.y;
// Clamp the z value.
if (z < min.z)
z = min.z;
if (z > max.z)
z = max.z;
// Clamp the z value.
if (w < min.w)
w = min.w;
if (w > max.w)
w = max.w;
}
void Vector4::clamp(const Vector4& v, const Vector4& min, const Vector4& max, Vector4* dst)
{
GP_ASSERT(dst);
GP_ASSERT(!(min.x > max.x || min.y > max.y || min.z > max.z || min.w > max.w));
// Clamp the x value.
dst->x = v.x;
if (dst->x < min.x)
dst->x = min.x;
if (dst->x > max.x)
dst->x = max.x;
// Clamp the y value.
dst->y = v.y;
if (dst->y < min.y)
dst->y = min.y;
if (dst->y > max.y)
dst->y = max.y;
// Clamp the z value.
dst->z = v.z;
if (dst->z < min.z)
dst->z = min.z;
if (dst->z > max.z)
dst->z = max.z;
// Clamp the w value.
dst->w = v.w;
if (dst->w < min.w)
dst->w = min.w;
if (dst->w > max.w)
dst->w = max.w;
}
float Vector4::distance(const Vector4& v) const
{
float dx = v.x - x;
float dy = v.y - y;
float dz = v.z - z;
float dw = v.w - w;
return sqrt(dx * dx + dy * dy + dz * dz + dw * dw);
}
float Vector4::distanceSquared(const Vector4& v) const
{
float dx = v.x - x;
float dy = v.y - y;
float dz = v.z - z;
float dw = v.w - w;
return (dx * dx + dy * dy + dz * dz + dw * dw);
}
float Vector4::dot(const Vector4& v) const
{
return (x * v.x + y * v.y + z * v.z + w * v.w);
}
float Vector4::dot(const Vector4& v1, const Vector4& v2)
{
return (v1.x * v2.x + v1.y * v2.y + v1.z * v2.z + v1.w * v2.w);
}
float Vector4::length() const
{
return sqrt(x * x + y * y + z * z + w * w);
}
float Vector4::lengthSquared() const
{
return (x * x + y * y + z * z + w * w);
}
void Vector4::negate()
{
x = -x;
y = -y;
z = -z;
w = -w;
}
2014-04-30 19:59:06 +08:00
void Vector4::normalize()
2014-04-02 10:33:07 +08:00
{
float n = x * x + y * y + z * z + w * w;
// Already normalized.
if (n == 1.0f)
return;
2014-04-30 19:59:06 +08:00
2014-04-02 10:33:07 +08:00
n = sqrt(n);
// Too close to zero.
if (n < MATH_TOLERANCE)
return;
2014-04-30 19:59:06 +08:00
2014-04-02 10:33:07 +08:00
n = 1.0f / n;
2014-04-30 19:59:06 +08:00
x *= n;
y *= n;
z *= n;
w *= n;
}
2014-05-01 01:10:18 +08:00
Vector4 Vector4::getNormalized() const
2014-04-30 19:59:06 +08:00
{
Vector4 v(*this);
v.normalize();
return v;
2014-04-02 10:33:07 +08:00
}
void Vector4::scale(float scalar)
{
x *= scalar;
y *= scalar;
z *= scalar;
w *= scalar;
}
2014-04-16 10:58:34 +08:00
void Vector4::set(float xx, float yy, float zz, float ww)
2014-04-02 10:33:07 +08:00
{
2014-04-16 10:58:34 +08:00
this->x = xx;
this->y = yy;
this->z = zz;
this->w = ww;
2014-04-02 10:33:07 +08:00
}
void Vector4::set(const float* array)
{
GP_ASSERT(array);
x = array[0];
y = array[1];
z = array[2];
w = array[3];
}
void Vector4::set(const Vector4& v)
{
this->x = v.x;
this->y = v.y;
this->z = v.z;
this->w = v.w;
}
void Vector4::set(const Vector4& p1, const Vector4& p2)
{
x = p2.x - p1.x;
y = p2.y - p1.y;
z = p2.z - p1.z;
w = p2.w - p1.w;
}
void Vector4::subtract(const Vector4& v)
{
x -= v.x;
y -= v.y;
z -= v.z;
w -= v.w;
}
void Vector4::subtract(const Vector4& v1, const Vector4& v2, Vector4* dst)
{
GP_ASSERT(dst);
dst->x = v1.x - v2.x;
dst->y = v1.y - v2.y;
dst->z = v1.z - v2.z;
dst->w = v1.w - v2.w;
}
const Vector4 Vector4::ZERO = Vector4(0.0f, 0.0f, 0.0f, 0.0f);
const Vector4 Vector4::ONE = Vector4(1.0f, 1.0f, 1.0f, 1.0f);
const Vector4 Vector4::UNIT_X = Vector4(1.0f, 0.0f, 0.0f, 0.0f);
const Vector4 Vector4::UNIT_Y = Vector4(0.0f, 1.0f, 0.0f, 0.0f);
const Vector4 Vector4::UNIT_Z = Vector4(0.0f, 0.0f, 1.0f, 0.0f);
const Vector4 Vector4::UNIT_W = Vector4(0.0f, 0.0f, 0.0f, 1.0f);
2014-04-02 12:09:51 +08:00
NS_CC_MATH_END