9 lines
113 B
C#
9 lines
113 B
C#
namespace Geo
|
|
{
|
|
public interface IVector
|
|
{
|
|
int N { get; }
|
|
|
|
double[] ToArray();
|
|
}
|
|
} |