This commit is contained in:
2025-11-28 16:54:56 +09:00
parent 23176551b7
commit 8f18415f25
841 changed files with 67879 additions and 12265 deletions

View File

@@ -11,6 +11,8 @@ using Amazon.DynamoDBv2.Model;
namespace ServerCore;
// HANDOVER: 수학적 처리 함수를 제공 한다. (float, double, decimal 자료형 제공)
public static class MathHelper
{
// The infamous ''3.14159265358979...'' value (RO).

View File

@@ -9,6 +9,10 @@ using System.Numerics;
namespace ServerCore;
// HANDOVER: 3차원 기반 회전 함수를 제공 한다.
[Serializable]
public struct QuaternionHelper
{

View File

@@ -8,6 +8,11 @@ using System.Threading.Tasks;
namespace ServerCore;
// HANDOVER: 3차원 기반 회전 함수를 제공 한다.
// TransformHelper.rotate() 짐벌락 (Gimbal Lock) 이슈가 있기 때문에 본 함수를 사용하면 안되고,
// QuaternionHelper 클래스의 함수를 사용해야 한다.
public class TransformHelper
{
public static Position rotateX(Position pos, Rotation rot)