11 lines
227 B
C#
11 lines
227 B
C#
|
using System.Numerics;
|
||
|
|
||
|
namespace MoonTools.Curve
|
||
|
{
|
||
|
public interface ICurve3D
|
||
|
{
|
||
|
Vector3 Point(float t, float startTime, float endTime);
|
||
|
Vector3 Velocity(float t, float startTime, float endTime);
|
||
|
}
|
||
|
}
|