Базовая версия библиотеки. Версия 0.2.0-dev
This commit is contained in:
parent
262a4c04e8
commit
3ba55c7524
31 changed files with 7432 additions and 0 deletions
19
GeometryTest/Vector2FloatTest.cs
Normal file
19
GeometryTest/Vector2FloatTest.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
using Geometry;
|
||||
|
||||
namespace GeometryTest
|
||||
{
|
||||
[TestClass]
|
||||
public class Vector2FloatTest
|
||||
{
|
||||
[TestMethod]
|
||||
public void TestInitialization()
|
||||
{
|
||||
SPVector2 vector = new SPVector2(1.0f, 2.0f);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue