2023-03-14 08:02:43 +03:00
|
|
|
/*
|
|
|
|
recast4j copyright (c) 2015-2019 Piotr Piastucki piotr@jtilia.org
|
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
2023-03-16 19:48:49 +03:00
|
|
|
|
2023-03-27 19:01:50 +03:00
|
|
|
using System;
|
2023-05-14 10:57:57 +03:00
|
|
|
using System.Runtime.CompilerServices;
|
2023-03-27 19:01:50 +03:00
|
|
|
|
2023-03-27 18:46:22 +03:00
|
|
|
namespace DotRecast.Core
|
2023-03-16 19:09:10 +03:00
|
|
|
{
|
2023-03-27 18:46:22 +03:00
|
|
|
public struct Vector3f
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
2023-04-29 13:48:19 +03:00
|
|
|
public float x;
|
|
|
|
public float y;
|
|
|
|
public float z;
|
2023-03-16 19:48:49 +03:00
|
|
|
|
2023-03-29 18:59:00 +03:00
|
|
|
public static Vector3f Zero { get; } = new Vector3f(0, 0, 0);
|
2023-04-12 17:33:15 +03:00
|
|
|
public static Vector3f Up { get; } = new Vector3f(0, 1, 0);
|
2023-03-29 18:59:00 +03:00
|
|
|
|
2023-03-28 18:03:33 +03:00
|
|
|
public static Vector3f Of(float[] f)
|
|
|
|
{
|
2023-05-13 06:46:18 +03:00
|
|
|
return Of(f, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Vector3f Of(float[] f, int idx)
|
|
|
|
{
|
|
|
|
return Of(f[idx + 0], f[idx + 1], f[idx + 2]);
|
2023-03-29 18:59:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public static Vector3f Of(float x, float y, float z)
|
|
|
|
{
|
|
|
|
return new Vector3f(x, y, z);
|
2023-03-28 18:03:33 +03:00
|
|
|
}
|
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
public Vector3f(float x, float y, float z)
|
|
|
|
{
|
|
|
|
this.x = x;
|
|
|
|
this.y = y;
|
|
|
|
this.z = z;
|
|
|
|
}
|
2023-03-27 19:01:50 +03:00
|
|
|
|
2023-03-31 20:01:02 +03:00
|
|
|
public Vector3f(float[] f)
|
|
|
|
{
|
|
|
|
x = f[0];
|
|
|
|
y = f[1];
|
|
|
|
z = f[2];
|
|
|
|
}
|
|
|
|
|
2023-03-27 19:01:50 +03:00
|
|
|
public float this[int index]
|
|
|
|
{
|
|
|
|
get => GetElement(index);
|
|
|
|
set => SetElement(index, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public float GetElement(int index)
|
|
|
|
{
|
|
|
|
switch (index)
|
|
|
|
{
|
|
|
|
case 0: return x;
|
|
|
|
case 1: return y;
|
|
|
|
case 2: return z;
|
|
|
|
default: throw new IndexOutOfRangeException($"{index}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetElement(int index, float value)
|
|
|
|
{
|
|
|
|
switch (index)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
x = value;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
y = value;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
z = value;
|
|
|
|
break;
|
2023-03-28 17:08:24 +03:00
|
|
|
|
2023-03-27 19:01:50 +03:00
|
|
|
default: throw new IndexOutOfRangeException($"{index}-{value}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-14 10:57:57 +03:00
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
public Vector3f Subtract(Vector3f right)
|
|
|
|
{
|
|
|
|
return new Vector3f(
|
|
|
|
x - right.x,
|
|
|
|
y - right.y,
|
|
|
|
z - right.z
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-05-14 11:09:37 +03:00
|
|
|
/// Derives the dot product of two vectors on the xz-plane. (@p u . @p v)
|
|
|
|
/// @param[in] u A vector [(x, y, z)]
|
|
|
|
/// @param[in] v A vector [(x, y, z)]
|
|
|
|
/// @return The dot product on the xz-plane.
|
|
|
|
///
|
|
|
|
/// The vectors are projected onto the xz-plane, so the y-values are
|
|
|
|
/// ignored.
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
public float Dot2D(Vector3f v)
|
|
|
|
{
|
|
|
|
return x * v.x + z * v.z;
|
|
|
|
}
|
|
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
public float Dot2D(float[] v, int vi)
|
|
|
|
{
|
|
|
|
return x * v[vi] + z * v[vi + 2];
|
|
|
|
}
|
|
|
|
|
2023-05-08 17:12:11 +03:00
|
|
|
public override bool Equals(object obj)
|
|
|
|
{
|
|
|
|
if (!(obj is Vector3f))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return Equals((Vector3f)obj);
|
|
|
|
}
|
2023-05-13 06:46:18 +03:00
|
|
|
|
2023-05-08 17:12:11 +03:00
|
|
|
public bool Equals(Vector3f other)
|
|
|
|
{
|
|
|
|
return x.Equals(other.x) &&
|
|
|
|
y.Equals(other.y) &&
|
|
|
|
z.Equals(other.z);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override int GetHashCode()
|
|
|
|
{
|
|
|
|
int hash = x.GetHashCode();
|
|
|
|
hash = RcHashCodes.CombineHashCodes(hash, y.GetHashCode());
|
|
|
|
hash = RcHashCodes.CombineHashCodes(hash, z.GetHashCode());
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
2023-03-31 18:28:54 +03:00
|
|
|
public static bool operator ==(Vector3f left, Vector3f right)
|
|
|
|
{
|
2023-05-08 17:12:11 +03:00
|
|
|
return left.Equals(right);
|
2023-03-31 18:28:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public static bool operator !=(Vector3f left, Vector3f right)
|
|
|
|
{
|
2023-04-22 07:44:05 +03:00
|
|
|
return !left.Equals(right);
|
2023-03-31 18:28:54 +03:00
|
|
|
}
|
2023-05-14 10:57:57 +03:00
|
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
public static Vector3f operator -(Vector3f left, Vector3f right)
|
|
|
|
{
|
|
|
|
return left.Subtract(right);
|
|
|
|
}
|
2023-05-15 17:21:31 +03:00
|
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
public static Vector3f Cross(Vector3f v1, Vector3f v2)
|
|
|
|
{
|
|
|
|
return new Vector3f(
|
|
|
|
(v1.y * v2.z) - (v1.z * v2.y),
|
|
|
|
(v1.z * v2.x) - (v1.x * v2.z),
|
|
|
|
(v1.x * v2.y) - (v1.y * v2.x)
|
|
|
|
);
|
|
|
|
}
|
2023-05-15 17:25:50 +03:00
|
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
public void Normalize()
|
|
|
|
{
|
|
|
|
float d = (float)(1.0f / Math.Sqrt(RcMath.Sqr(x) + RcMath.Sqr(y) + RcMath.Sqr(z)));
|
|
|
|
if (d != 0)
|
|
|
|
{
|
|
|
|
x *= d;
|
|
|
|
y *= d;
|
|
|
|
z *= d;
|
|
|
|
}
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
2023-05-08 17:12:11 +03:00
|
|
|
}
|