2019-10-29 01:55:18 +00:00
|
|
|
using System.Numerics;
|
2019-10-28 18:17:14 +00:00
|
|
|
|
2020-02-21 01:37:52 +00:00
|
|
|
namespace MoonTools.Curve.Extensions
|
2019-10-28 18:17:14 +00:00
|
|
|
{
|
|
|
|
public static class Vector2Extensions
|
|
|
|
{
|
|
|
|
public static Vector2 XY(this Vector3 vector) => new Vector2(vector.X, vector.Y);
|
|
|
|
}
|
2020-02-21 01:37:52 +00:00
|
|
|
}
|