2012-08-09 09:45:04 +00:00
#region Using Statements
2011-10-31 05:36:24 +00:00
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Text ;
2011-11-02 16:01:05 +00:00
using NUnit.Framework ;
2011-10-31 05:36:24 +00:00
using XNAVector2 = Microsoft . Xna . Framework . Vector2 ;
using ANXVector2 = ANX . Framework . Vector2 ;
2011-11-02 16:01:05 +00:00
using XNAMatrix = Microsoft . Xna . Framework . Matrix ;
using ANXMatrix = ANX . Framework . Matrix ;
2011-10-31 05:36:24 +00:00
2011-11-17 18:22:51 +00:00
using XNAQuaternion = Microsoft . Xna . Framework . Quaternion ;
using ANXQuaternion = ANX . Framework . Quaternion ;
2011-10-31 05:36:24 +00:00
#endregion // Using Statements
2012-08-09 09:45:04 +00:00
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
2011-10-31 05:36:24 +00:00
namespace ANX.Framework.TestCenter.Strukturen
{
[TestFixture]
class Vector2Test
{
#region Testdata
static object [ ] ninefloats =
{
// new object[] {Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat ,Vector2Test.RandomFloat},
// new object[] {Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat ,Vector2Test.RandomFloat},
// new object[] {Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat },
// new object[] {Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat ,Vector2Test.RandomFloat},
// new object[] {Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat,Vector2Test.RandomFloat },
new object [ ] { DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue } ,
new object [ ] { DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue } ,
new object [ ] { DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue } ,
new object [ ] { DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue } ,
new object [ ] { DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue }
} ;
2011-11-17 18:22:51 +00:00
static object [ ] twentytwoFloats =
{
new object [ ] { DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue } ,
new object [ ] { DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue } ,
new object [ ] { DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue } ,
new object [ ] { DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue } ,
new object [ ] { DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue , DataFactory . RandomValue } ,
} ;
2011-10-31 05:36:24 +00:00
#endregion
#region Test
#region Properties
[Test]
public void One ( )
{
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( XNAVector2 . One , ANXVector2 . One , "One" ) ;
2011-10-31 05:36:24 +00:00
}
[Test]
public void UnitX ( )
{
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( XNAVector2 . UnitX , ANXVector2 . UnitX , "UnitX" ) ;
2011-10-31 05:36:24 +00:00
}
[Test]
public void UnitY ( )
{
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( XNAVector2 . UnitY , ANXVector2 . UnitY , "UnitY" ) ;
2011-10-31 05:36:24 +00:00
}
[Test]
public void Zero ( )
{
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( XNAVector2 . Zero , ANXVector2 . Zero , "Zero" ) ;
2011-10-31 05:36:24 +00:00
}
#endregion
#region Constructors
[Test, TestCaseSource("ninefloats")]
public void contructor1 ( float x , float nop1 , float nop2 , float nop3 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xnaR = new XNAVector2 ( x ) ;
ANXVector2 anxR = new ANXVector2 ( x ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Constructor1" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void contructor2 ( float x , float y , float nop2 , float nop3 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xnaR = new XNAVector2 ( x , y ) ;
ANXVector2 anxR = new ANXVector2 ( x , y ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Constructor2" ) ;
2011-10-31 05:36:24 +00:00
}
#endregion
#region Public Methods
[Test, TestCaseSource("ninefloats")]
public void Add ( float x1 , float y1 , float x2 , float y2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = XNAVector2 . Add ( xna1 , xna2 ) ;
ANXVector2 anxR = ANXVector2 . Add ( anx1 , anx2 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Add" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void Barycentric ( float x1 , float y1 , float x2 , float y2 , float x3 , float y3 , float amount1 , float amount2 , float nop )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
XNAVector2 xna3 = new XNAVector2 ( x3 , y3 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
ANXVector2 anx3 = new ANXVector2 ( x3 , y3 ) ;
XNAVector2 xnaR = XNAVector2 . Barycentric ( xna1 , xna2 , xna3 , amount1 , amount2 ) ;
ANXVector2 anxR = ANXVector2 . Barycentric ( anx1 , anx2 , anx3 , amount1 , amount2 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Barycentric" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void CatmullRom ( float x1 , float y1 , float x2 , float y2 , float x3 , float y3 , float x4 , float y4 , float amount )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
XNAVector2 xna3 = new XNAVector2 ( x3 , y3 ) ;
XNAVector2 xna4 = new XNAVector2 ( x4 , y4 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
ANXVector2 anx3 = new ANXVector2 ( x3 , y3 ) ;
ANXVector2 anx4 = new ANXVector2 ( x4 , y4 ) ;
XNAVector2 xnaR = XNAVector2 . CatmullRom ( xna1 , xna2 , xna3 , xna4 , amount ) ;
ANXVector2 anxR = ANXVector2 . CatmullRom ( anx1 , anx2 , anx3 , anx4 , amount ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "CatmullRom" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void Clamp ( float x1 , float y1 , float x2 , float y2 , float x3 , float y3 , float x4 , float y4 , float amount )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
XNAVector2 xna3 = new XNAVector2 ( x3 , y3 ) ;
XNAVector2 xna4 = new XNAVector2 ( x4 , y4 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
ANXVector2 anx3 = new ANXVector2 ( x3 , y3 ) ;
ANXVector2 anx4 = new ANXVector2 ( x4 , y4 ) ;
XNAVector2 xnaR = XNAVector2 . Clamp ( xna1 , xna2 , xna3 ) ;
ANXVector2 anxR = ANXVector2 . Clamp ( anx1 , anx2 , anx3 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Clamp" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void Distance ( float x1 , float y1 , float x2 , float y2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
float xnaR = XNAVector2 . Distance ( xna1 , xna2 ) ;
float anxR = ANXVector2 . Distance ( anx1 , anx2 ) ;
Assert . AreEqual ( xnaR , anxR ) ;
}
[Test, TestCaseSource("ninefloats")]
public void DistanceSquared ( float x1 , float y1 , float x2 , float y2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
float xnaR = XNAVector2 . DistanceSquared ( xna1 , xna2 ) ;
float anxR = ANXVector2 . DistanceSquared ( anx1 , anx2 ) ;
Assert . AreEqual ( xnaR , anxR ) ;
}
[Test, TestCaseSource("ninefloats")]
public void DivideVectorDivider ( float x1 , float y1 , float divider , float nop1 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
XNAVector2 xnaR = XNAVector2 . Divide ( xna1 , divider ) ;
ANXVector2 anxR = ANXVector2 . Divide ( anx1 , divider ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "DivideVectorDivider" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void DivideVectorVector ( float x1 , float y1 , float x2 , float y2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = XNAVector2 . Divide ( xna1 , xna2 ) ;
ANXVector2 anxR = ANXVector2 . Divide ( anx1 , anx2 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "DivideVectorVector" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void Dot ( float x1 , float y1 , float x2 , float y2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
float xnaR = XNAVector2 . Dot ( xna1 , xna2 ) ;
float anxR = ANXVector2 . Dot ( anx1 , anx2 ) ;
Assert . AreEqual ( xnaR , anxR ) ;
}
[Test, TestCaseSource("ninefloats")]
public void GetHashCode ( float x1 , float y1 , float x2 , float y2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
float xnaR = xna1 . GetHashCode ( ) ;
float anxR = anx1 . GetHashCode ( ) ;
Assert . AreEqual ( xnaR , anxR ) ;
}
[Test, TestCaseSource("ninefloats")]
public void Hermite ( float x1 , float y1 , float x2 , float y2 , float x3 , float y3 , float x4 , float y4 , float amount )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
XNAVector2 xna3 = new XNAVector2 ( x3 , y3 ) ;
XNAVector2 xna4 = new XNAVector2 ( x4 , y4 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
ANXVector2 anx3 = new ANXVector2 ( x3 , y3 ) ;
ANXVector2 anx4 = new ANXVector2 ( x4 , y4 ) ;
XNAVector2 xnaR = XNAVector2 . Hermite ( xna1 , xna2 , xna3 , xna4 , amount ) ;
ANXVector2 anxR = ANXVector2 . Hermite ( anx1 , anx2 , anx3 , anx4 , amount ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Hermite" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void Length ( float x1 , float y1 , float nop1 , float nop2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
Assert . AreEqual ( anx1 . Length ( ) , xna1 . Length ( ) ) ;
}
[Test, TestCaseSource("ninefloats")]
public void LengthSquared ( float x1 , float y1 , float nop1 , float nop2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
Assert . AreEqual ( anx1 . LengthSquared ( ) , xna1 . LengthSquared ( ) ) ;
}
[Test, TestCaseSource("ninefloats")]
public void Lerp ( float x1 , float y1 , float x2 , float y2 , float amount , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = XNAVector2 . Lerp ( xna1 , xna2 , amount ) ;
ANXVector2 anxR = ANXVector2 . Lerp ( anx1 , anx2 , amount ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Lerp" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void Max ( float x1 , float y1 , float x2 , float y2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = XNAVector2 . Max ( xna1 , xna2 ) ;
ANXVector2 anxR = ANXVector2 . Max ( anx1 , anx2 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Max" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void Min ( float x1 , float y1 , float x2 , float y2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = XNAVector2 . Min ( xna1 , xna2 ) ;
ANXVector2 anxR = ANXVector2 . Min ( anx1 , anx2 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Min" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void MultiplyVectorFloat ( float x1 , float y1 , float scale , float nop , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
XNAVector2 xnaR = XNAVector2 . Multiply ( xna1 , scale ) ;
ANXVector2 anxR = ANXVector2 . Multiply ( anx1 , scale ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "MultiplyVectorFloat" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void MultiplyVectorVector ( float x1 , float y1 , float x2 , float y2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = XNAVector2 . Multiply ( xna1 , xna2 ) ;
ANXVector2 anxR = ANXVector2 . Multiply ( anx1 , anx2 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "MultiplyVectorVector" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void Negate ( float x1 , float y1 , float nop1 , float nop2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
XNAVector2 xnaR = XNAVector2 . Negate ( xna1 ) ;
ANXVector2 anxR = ANXVector2 . Negate ( anx1 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Negate" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void NormalizeInstanz ( float x1 , float y1 , float nop1 , float nop2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xnaR = new XNAVector2 ( x1 , y1 ) ;
ANXVector2 anxR = new ANXVector2 ( x1 , y1 ) ;
xnaR . Normalize ( ) ;
anxR . Normalize ( ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "NormalizeInstanz" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void NormalizeStatic ( float x1 , float y1 , float nop1 , float nop2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
XNAVector2 xnaR = XNAVector2 . Normalize ( xna1 ) ;
ANXVector2 anxR = ANXVector2 . Normalize ( anx1 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "NormalizeStatic" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void Reflect ( float x1 , float y1 , float x2 , float y2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = XNAVector2 . Reflect ( xna1 , xna2 ) ;
ANXVector2 anxR = ANXVector2 . Reflect ( anx1 , anx2 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Reflect" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void SmoothStep ( float x1 , float y1 , float x2 , float y2 , float amount , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = XNAVector2 . SmoothStep ( xna1 , xna2 , amount ) ;
ANXVector2 anxR = ANXVector2 . SmoothStep ( anx1 , anx2 , amount ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "SmoothStep" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void Subtract ( float x1 , float y1 , float x2 , float y2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = XNAVector2 . Subtract ( xna1 , xna2 ) ;
ANXVector2 anxR = ANXVector2 . Subtract ( anx1 , anx2 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaR , anxR , "Subtract" ) ;
2011-10-31 05:36:24 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void ToString ( float x1 , float y1 , float nop1 , float nop2 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
String xnaR = xna1 . ToString ( ) ;
String anxR = anx1 . ToString ( ) ;
Assert . AreEqual ( xnaR , anxR ) ;
}
2011-11-02 16:01:05 +00:00
[Test, TestCaseSource("ninefloats")]
public void StaticTransform ( float x1 , float y1 , float x2 , float y2 , float nop1 , float nop2 , float nop3 , float nop4 , float nop5 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xnaResult ;
XNAMatrix xnaMatrix = XNAMatrix . CreateRotationX ( nop1 ) * XNAMatrix . CreateRotationY ( nop2 ) * XNAMatrix . CreateRotationZ ( nop3 ) * XNAMatrix . CreateTranslation ( nop4 , nop5 , nop1 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anxResult ;
ANXMatrix anxMatrix = ANXMatrix . CreateRotationX ( nop1 ) * ANXMatrix . CreateRotationY ( nop2 ) * ANXMatrix . CreateRotationZ ( nop3 ) * ANXMatrix . CreateTranslation ( nop4 , nop5 , nop1 ) ;
XNAVector2 . Transform ( ref xna1 , ref xnaMatrix , out xnaResult ) ;
ANXVector2 . Transform ( ref anx1 , ref anxMatrix , out anxResult ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaResult , anxResult , "StaticTransform" ) ;
2011-11-02 16:01:05 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void StaticTransform2 ( float x1 , float y1 , float x2 , float y2 , float nop1 , float nop2 , float nop3 , float nop4 , float nop5 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAMatrix xnaMatrix = XNAMatrix . CreateRotationX ( nop1 ) * XNAMatrix . CreateRotationY ( nop2 ) * XNAMatrix . CreateRotationZ ( nop3 ) * XNAMatrix . CreateTranslation ( nop4 , nop5 , nop1 ) ;
XNAVector2 xnaResult = XNAVector2 . Transform ( xna1 , xnaMatrix ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXMatrix anxMatrix = ANXMatrix . CreateRotationX ( nop1 ) * ANXMatrix . CreateRotationY ( nop2 ) * ANXMatrix . CreateRotationZ ( nop3 ) * ANXMatrix . CreateTranslation ( nop4 , nop5 , nop1 ) ;
ANXVector2 anxResult = ANXVector2 . Transform ( anx1 , anxMatrix ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( xnaResult , anxResult , "StaticTransform2" ) ;
2011-11-02 16:01:05 +00:00
}
[Test, TestCaseSource("ninefloats")]
public void StaticTransform3_ANXonly ( float x1 , float y1 , float x2 , float y2 , float nop1 , float nop2 , float nop3 , float nop4 , float nop5 )
{
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXMatrix anxMatrix = ANXMatrix . CreateRotationX ( nop1 ) * ANXMatrix . CreateRotationY ( nop2 ) * ANXMatrix . CreateRotationZ ( nop3 ) * ANXMatrix . CreateTranslation ( nop4 , nop5 , nop1 ) ;
ANXVector2 anxResult1 = ANXVector2 . Transform ( anx1 , anxMatrix ) ;
ANXVector2 anxResult2 ;
Vector2 . Transform ( ref anx1 , ref anxMatrix , out anxResult2 ) ;
2011-11-04 06:46:24 +00:00
AssertHelper . ConvertEquals ( anxResult1 , anxResult2 , "StaticTransform3_ANXonly" ) ;
2011-11-02 16:01:05 +00:00
}
2011-10-31 05:36:24 +00:00
/ *
public static Vector2 Transform ( Vector2 position , Matrix matrix )
{
throw new Exception ( "method has not yet been implemented" ) ;
}
public static void Transform ( ref Vector2 position , ref Matrix matrix , out Vector2 result )
{
throw new Exception ( "method has not yet been implemented" ) ;
}
public static Vector2 Transform ( Vector2 value , Quaternion rotation )
{
throw new Exception ( "method has not yet been implemented" ) ;
}
public static void Transform ( ref Vector2 value , ref Quaternion rotation , out Vector2 result )
{
throw new Exception ( "method has not yet been implemented" ) ;
}
public static void Transform ( Vector2 [ ] sourceArray , int sourceIndex , ref Matrix matrix , Vector2 [ ] destinationArray , int destinationIndex , int length )
{
throw new Exception ( "method has not yet been implemented" ) ;
}
public static void Transform ( Vector2 [ ] sourceArray , int sourceIndex , ref Quaternion rotation , Vector2 [ ] destinationArray , int destinationIndex , int length )
{
throw new Exception ( "method has not yet been implemented" ) ;
}
public static void Transform ( Vector2 [ ] sourceArray , ref Matrix matrix , Vector2 [ ] destinationArray )
{
throw new Exception ( "method has not yet been implemented" ) ;
}
public static void Transform ( Vector2 [ ] sourceArray , ref Quaternion rotation , Vector2 [ ] destinationArray )
{
throw new Exception ( "method has not yet been implemented" ) ;
}
#endregion
* /
#endregion
2011-11-16 17:53:07 +00:00
#region Operators
[Test, TestCaseSource("ninefloats")]
public void AddOperator ( float x1 , float y1 , float z1 , float w1 , float x2 , float y2 , float z2 , float w2 , float nop1 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = xna1 + xna2 ;
ANXVector2 anxR = anx1 + anx2 ;
AssertHelper . ConvertEquals ( xnaR , anxR , "AddOperator" ) ;
}
[Test, TestCaseSource("ninefloats")]
public void SubtractOperator ( float x1 , float y1 , float z1 , float w1 , float x2 , float y2 , float z2 , float w2 , float nop1 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = xna1 - xna2 ;
ANXVector2 anxR = anx1 - anx2 ;
AssertHelper . ConvertEquals ( xnaR , anxR , "SubtractOperator" ) ;
}
[Test, TestCaseSource("ninefloats")]
public void EqualsOperator ( float x1 , float y1 , float z1 , float w1 , float x2 , float y2 , float z2 , float w2 , float nop1 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
bool xnaR = xna1 = = xna2 ;
bool anxR = anx1 = = anx2 ;
AssertHelper . ConvertEquals ( xnaR , anxR , "EqualsOperator" ) ;
}
2012-08-21 18:13:30 +00:00
[Test]
public void EqualsOperatorNaN ( )
{
XNAVector2 xna1 = new XNAVector2 ( float . NaN , float . NaN ) ;
XNAVector2 xna2 = new XNAVector2 ( float . NaN , float . NaN ) ;
ANXVector2 anx1 = new ANXVector2 ( float . NaN , float . NaN ) ;
ANXVector2 anx2 = new ANXVector2 ( float . NaN , float . NaN ) ;
bool xnaR = ( xna1 = = xna2 ) ;
bool anxR = ( anx1 = = anx2 ) ;
AssertHelper . ConvertEquals ( xnaR , anxR , "EqualsOperator" ) ;
}
2011-11-16 17:53:07 +00:00
[Test, TestCaseSource("ninefloats")]
public void UnequalsOperator ( float x1 , float y1 , float z1 , float w1 , float x2 , float y2 , float z2 , float w2 , float nop1 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
bool xnaR = xna1 ! = xna2 ;
bool anxR = anx1 ! = anx2 ;
AssertHelper . ConvertEquals ( xnaR , anxR , "UnequalsOperator" ) ;
}
[Test, TestCaseSource("ninefloats")]
public void MultiplyOperatorFloat ( float x1 , float y1 , float z1 , float w1 , float x2 , float y2 , float z2 , float w2 , float value )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
XNAVector2 xnaR = xna1 * value ;
ANXVector2 anxR = anx1 * value ;
AssertHelper . ConvertEquals ( xnaR , anxR , "MultiplyOperatorFloat" ) ;
}
[Test, TestCaseSource("ninefloats")]
public void MultiplyOperatorVector2 ( float x1 , float y1 , float z1 , float w1 , float x2 , float y2 , float z2 , float w2 , float nop1 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = xna1 * xna2 ;
ANXVector2 anxR = anx1 * anx2 ;
AssertHelper . ConvertEquals ( xnaR , anxR , "MultiplyOperatorVector2" ) ;
}
[Test, TestCaseSource("ninefloats")]
public void DivideOperatorFloat ( float x1 , float y1 , float z1 , float w1 , float x2 , float y2 , float z2 , float w2 , float value )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
XNAVector2 xnaR = xna1 / value ;
ANXVector2 anxR = anx1 / value ;
AssertHelper . ConvertEquals ( xnaR , anxR , "DivideOperatorFloat" ) ;
}
[Test, TestCaseSource("ninefloats")]
public void DivideOperatorVector2 ( float x1 , float y1 , float z1 , float w1 , float x2 , float y2 , float z2 , float w2 , float nop1 )
{
XNAVector2 xna1 = new XNAVector2 ( x1 , y1 ) ;
XNAVector2 xna2 = new XNAVector2 ( x2 , y2 ) ;
ANXVector2 anx1 = new ANXVector2 ( x1 , y1 ) ;
ANXVector2 anx2 = new ANXVector2 ( x2 , y2 ) ;
XNAVector2 xnaR = xna1 / xna2 ;
ANXVector2 anxR = anx1 / anx2 ;
AssertHelper . ConvertEquals ( xnaR , anxR , "DivideOperatorVector2" ) ;
}
#endregion
2011-11-17 18:22:51 +00:00
#region Transformations
[Test, TestCaseSource("twentytwoFloats")]
public void TransformStaticMatrix (
float x , float y , float z ,
float m11 , float m12 , float m13 , float m14 , float m21 , float m22 , float m23 , float m24 , float m31 , float m32 , float m33 , float m34 , float m41 , float m42 , float m43 , float m44 ,
float nop0 , float nop1 , float nop2 )
{
XNAVector2 xnaVector = new XNAVector2 ( x , y ) ;
XNAMatrix xnaMatrix = new XNAMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
ANXVector2 anxVector = new ANXVector2 ( x , y ) ;
ANXMatrix anxMatrix = new ANXMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
XNAVector2 xna = XNAVector2 . Transform ( xnaVector , xnaMatrix ) ;
ANXVector2 anx = ANXVector2 . Transform ( anxVector , anxMatrix ) ;
AssertHelper . ConvertEquals ( xna , anx , "TransformStaticMatrix" ) ;
}
[Test, TestCaseSource("twentytwoFloats")]
public void TransformStaticQuaternion (
float x , float y , float z ,
float xQ , float yQ , float zQ , float wQ ,
float nop0 , float nop1 , float nop2 , float nop3 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 , float nop9 , float nop10 , float nop11 , float nop12 , float nop13 , float nop14 )
{
XNAVector2 xnaVector = new XNAVector2 ( x , y ) ;
XNAQuaternion xnaQuaternion = new XNAQuaternion ( xQ , yQ , zQ , wQ ) ;
ANXVector2 anxVector = new ANXVector2 ( x , y ) ;
ANXQuaternion anxQuaternion = new ANXQuaternion ( xQ , yQ , zQ , wQ ) ;
XNAVector2 xna = XNAVector2 . Transform ( xnaVector , xnaQuaternion ) ;
ANXVector2 anx = ANXVector2 . Transform ( anxVector , anxQuaternion ) ;
AssertHelper . ConvertEquals ( xna , anx , "TransformStaticQuaternion" ) ;
}
[Test, TestCaseSource("twentytwoFloats")]
public static void TransformStaticMatrixToDestination (
float x1 , float y1 , float z1 ,
float x2 , float y2 , float z2 ,
float m11 , float m12 , float m13 , float m14 , float m21 , float m22 , float m23 , float m24 , float m31 , float m32 , float m33 , float m34 , float m41 , float m42 , float m43 , float m44 )
{
XNAVector2 [ ] xnaVector = new XNAVector2 [ ] { new XNAVector2 ( x1 , y1 ) , new XNAVector2 ( x2 , y2 ) } ;
XNAMatrix xnaMatrix = new XNAMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
ANXVector2 [ ] anxVector = new ANXVector2 [ ] { new ANXVector2 ( x1 , y1 ) , new ANXVector2 ( x2 , y2 ) } ;
ANXMatrix anxMatrix = new ANXMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
XNAVector2 [ ] xna = new XNAVector2 [ 2 ] ;
XNAVector2 . Transform ( xnaVector , ref xnaMatrix , xna ) ;
ANXVector2 [ ] anx = new ANXVector2 [ 2 ] ;
ANXVector2 . Transform ( anxVector , ref anxMatrix , anx ) ;
AssertHelper . ConvertEquals ( xna , anx , "TransformStaticMatrixToDestination" ) ;
}
[Test, TestCaseSource("twentytwoFloats")]
public static void TransformStaticQuaternionToDestination (
float x1 , float y1 , float z1 ,
float x2 , float y2 , float z2 ,
float xQ , float yQ , float zQ , float wQ ,
float nop0 , float nop1 , float nop2 , float nop3 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 , float nop9 , float nop10 , float nop11 )
{
XNAVector2 [ ] xnaVector = new XNAVector2 [ ] { new XNAVector2 ( x1 , y1 ) , new XNAVector2 ( x2 , y2 ) } ;
XNAQuaternion xnaQuaternion = new XNAQuaternion ( xQ , yQ , zQ , wQ ) ;
ANXVector2 [ ] anxVector = new ANXVector2 [ ] { new ANXVector2 ( x1 , y1 ) , new ANXVector2 ( x2 , y2 ) } ;
ANXQuaternion anxQuaternion = new ANXQuaternion ( xQ , yQ , zQ , wQ ) ;
XNAVector2 [ ] xna = new XNAVector2 [ 2 ] ;
XNAVector2 . Transform ( xnaVector , ref xnaQuaternion , xna ) ;
ANXVector2 [ ] anx = new ANXVector2 [ 2 ] ;
ANXVector2 . Transform ( anxVector , ref anxQuaternion , anx ) ;
AssertHelper . ConvertEquals ( xna , anx , "TransformStaticQuaternionToDestination" ) ;
}
[Test, TestCaseSource("twentytwoFloats")]
public static void TransformStaticMatrixToDestinationWithIndex (
float x1 , float y1 , float z1 ,
float x2 , float y2 , float z2 ,
float m11 , float m12 , float m13 , float m14 , float m21 , float m22 , float m23 , float m24 , float m31 , float m32 , float m33 , float m34 , float m41 , float m42 , float m43 , float m44 )
{
XNAVector2 [ ] xnaVector = new XNAVector2 [ ] { new XNAVector2 ( x1 , y1 ) , new XNAVector2 ( x2 , y2 ) } ;
XNAMatrix xnaMatrix = new XNAMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
ANXVector2 [ ] anxVector = new ANXVector2 [ ] { new ANXVector2 ( x1 , y1 ) , new ANXVector2 ( x2 , y2 ) } ;
ANXMatrix anxMatrix = new ANXMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
XNAVector2 [ ] xna = new XNAVector2 [ 2 ] ;
XNAVector2 . Transform ( xnaVector , 1 , ref xnaMatrix , xna , 1 , 1 ) ;
ANXVector2 [ ] anx = new ANXVector2 [ 2 ] ;
ANXVector2 . Transform ( anxVector , 1 , ref anxMatrix , anx , 1 , 1 ) ;
AssertHelper . ConvertEquals ( xna , anx , "TransformStaticMatrixToDestinationWithIndex" ) ;
}
[Test, TestCaseSource("twentytwoFloats")]
public static void TransformStaticQuaternionToDestinationWithIndex (
float x1 , float y1 , float z1 ,
float x2 , float y2 , float z2 ,
float xQ , float yQ , float zQ , float wQ ,
float nop0 , float nop1 , float nop2 , float nop3 , float nop4 , float nop5 , float nop6 , float nop7 , float nop8 , float nop9 , float nop10 , float nop11 )
{
XNAVector2 [ ] xnaVector = new XNAVector2 [ ] { new XNAVector2 ( x1 , y1 ) , new XNAVector2 ( x2 , y2 ) } ;
XNAQuaternion xnaQuaternion = new XNAQuaternion ( xQ , yQ , zQ , wQ ) ;
ANXVector2 [ ] anxVector = new ANXVector2 [ ] { new ANXVector2 ( x1 , y1 ) , new ANXVector2 ( x2 , y2 ) } ;
ANXQuaternion anxQuaternion = new ANXQuaternion ( xQ , yQ , zQ , wQ ) ;
XNAVector2 [ ] xna = new XNAVector2 [ 2 ] ;
XNAVector2 . Transform ( xnaVector , 1 , ref xnaQuaternion , xna , 1 , 1 ) ;
ANXVector2 [ ] anx = new ANXVector2 [ 2 ] ;
ANXVector2 . Transform ( anxVector , 1 , ref anxQuaternion , anx , 1 , 1 ) ;
AssertHelper . ConvertEquals ( xna , anx , "TransformStaticQuaternionToDestinationWithIndex" ) ;
}
[Test, TestCaseSource("twentytwoFloats")]
public void TransformNormalStatic (
float x , float y , float z ,
float m11 , float m12 , float m13 , float m14 , float m21 , float m22 , float m23 , float m24 , float m31 , float m32 , float m33 , float m34 , float m41 , float m42 , float m43 , float m44 ,
float nop0 , float nop1 , float nop2 )
{
XNAVector2 xnaVector = new XNAVector2 ( x , y ) ;
XNAMatrix xnaMatrix = new XNAMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
ANXVector2 anxVector = new ANXVector2 ( x , y ) ;
ANXMatrix anxMatrix = new ANXMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
XNAVector2 xna = XNAVector2 . TransformNormal ( xnaVector , xnaMatrix ) ;
ANXVector2 anx = ANXVector2 . TransformNormal ( anxVector , anxMatrix ) ;
AssertHelper . ConvertEquals ( xna , anx , "TransformNormalStatic" ) ;
}
[Test, TestCaseSource("twentytwoFloats")]
public void TransformNormalStaticToDestination (
float x1 , float y1 , float z1 ,
float x2 , float y2 , float z2 ,
float m11 , float m12 , float m13 , float m14 , float m21 , float m22 , float m23 , float m24 , float m31 , float m32 , float m33 , float m34 , float m41 , float m42 , float m43 , float m44 )
{
XNAVector2 [ ] xnaVector = new XNAVector2 [ ] { new XNAVector2 ( x1 , y1 ) , new XNAVector2 ( x2 , y2 ) } ;
XNAMatrix xnaMatrix = new XNAMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
ANXVector2 [ ] anxVector = new ANXVector2 [ ] { new ANXVector2 ( x1 , y1 ) , new ANXVector2 ( x2 , y2 ) } ;
ANXMatrix anxMatrix = new ANXMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
XNAVector2 [ ] xna = new XNAVector2 [ 2 ] ;
2011-11-19 18:52:31 +00:00
XNAVector2 . TransformNormal ( xnaVector , ref xnaMatrix , xna ) ;
2011-11-17 18:22:51 +00:00
ANXVector2 [ ] anx = new ANXVector2 [ 2 ] ;
2011-11-19 18:52:31 +00:00
ANXVector2 . TransformNormal ( anxVector , ref anxMatrix , anx ) ;
2011-11-17 18:22:51 +00:00
AssertHelper . ConvertEquals ( xna , anx , "TransformNormalStaticToDestination" ) ;
}
[Test, TestCaseSource("twentytwoFloats")]
public void TransformNormalStaticToDestinationWithIndex (
float x1 , float y1 , float z1 ,
float x2 , float y2 , float z2 ,
float m11 , float m12 , float m13 , float m14 , float m21 , float m22 , float m23 , float m24 , float m31 , float m32 , float m33 , float m34 , float m41 , float m42 , float m43 , float m44 )
{
XNAVector2 [ ] xnaVector = new XNAVector2 [ ] { new XNAVector2 ( x1 , y1 ) , new XNAVector2 ( x2 , y2 ) } ;
XNAMatrix xnaMatrix = new XNAMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
ANXVector2 [ ] anxVector = new ANXVector2 [ ] { new ANXVector2 ( x1 , y1 ) , new ANXVector2 ( x2 , y2 ) } ;
ANXMatrix anxMatrix = new ANXMatrix ( m11 , m12 , m13 , m14 , m21 , m22 , m23 , m24 , m31 , m32 , m33 , m34 , m41 , m42 , m43 , m44 ) ;
XNAVector2 [ ] xna = new XNAVector2 [ 2 ] ;
2011-11-19 18:52:31 +00:00
XNAVector2 . TransformNormal ( xnaVector , 1 , ref xnaMatrix , xna , 1 , 1 ) ;
2011-11-17 18:22:51 +00:00
ANXVector2 [ ] anx = new ANXVector2 [ 2 ] ;
2011-11-19 18:52:31 +00:00
ANXVector2 . TransformNormal ( anxVector , 1 , ref anxMatrix , anx , 1 , 1 ) ;
2011-11-17 18:22:51 +00:00
AssertHelper . ConvertEquals ( xna , anx , "TransformNormalStaticToDestinationWithIndex" ) ;
}
#endregion
2011-11-16 17:53:07 +00:00
2011-10-31 05:36:24 +00:00
#endregion
}
}