blob: c2af2c21ce53d77fc47137ad78947e8bdcae5800 [file] [log] [blame]
#import('dart:builtin');
#import('../lib/VectorMath/VectorMath.dart');
#source('BaseTest.dart');
#source('QuaternionTest.dart');
#source('MatrixTest.dart');
#source('VectorTest.dart');
void main() {
{
QuaternionTest qt = new QuaternionTest();
qt.Test();
}
{
MatrixTest mt = new MatrixTest();
mt.Test();
}
{
VectorTest vt = new VectorTest();
vt.Test();
}
}