From dbed85ab17faee6641255f1727b462f4bf8b7c44 Mon Sep 17 00:00:00 2001 From: ikpil Date: Tue, 28 Mar 2023 01:01:50 +0900 Subject: [PATCH] changed Vector3f --- src/DotRecast.Core/Vector3f.cs | 43 ++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/src/DotRecast.Core/Vector3f.cs b/src/DotRecast.Core/Vector3f.cs index fb1eab5..57db9df 100644 --- a/src/DotRecast.Core/Vector3f.cs +++ b/src/DotRecast.Core/Vector3f.cs @@ -16,6 +16,9 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. */ +using System; +using System.Numerics; + namespace DotRecast.Core { public struct Vector3f @@ -30,5 +33,45 @@ namespace DotRecast.Core this.y = y; this.z = z; } + + 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; + + default: throw new IndexOutOfRangeException($"{index}-{value}"); + } + } + + public float[] ToArray() + { + return new float[] { x, y, z }; + } } } \ No newline at end of file