7 lines
117 B
C#
7 lines
117 B
C#
|
using Vim.Math3d;
|
||
|
|
||
|
public interface IOrbit
|
||
|
{
|
||
|
DVector3 GetPosition(double t);
|
||
|
IEllipse Ellipse { get; set; }
|
||
|
}
|