1128
This commit is contained in:
@@ -11,6 +11,8 @@ using Amazon.DynamoDBv2.Model;
|
||||
|
||||
namespace ServerCore;
|
||||
|
||||
// HANDOVER: 수학적 처리 함수를 제공 한다. (float, double, decimal 자료형 제공)
|
||||
|
||||
public static class MathHelper
|
||||
{
|
||||
// The infamous ''3.14159265358979...'' value (RO).
|
||||
|
||||
@@ -9,6 +9,10 @@ using System.Numerics;
|
||||
|
||||
namespace ServerCore;
|
||||
|
||||
|
||||
// HANDOVER: 3차원 기반 회전 함수를 제공 한다.
|
||||
|
||||
|
||||
[Serializable]
|
||||
public struct QuaternionHelper
|
||||
{
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user