TestMatrix.cs 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. //
  2. // Tests for System.Drawing.Drawing2D.Matrix.cs
  3. //
  4. // Author:
  5. // Jordi Mas i Hernandez <[email protected]>
  6. //
  7. // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
  8. //
  9. // Permission is hereby granted, free of charge, to any person obtaining
  10. // a copy of this software and associated documentation files (the
  11. // "Software"), to deal in the Software without restriction, including
  12. // without limitation the rights to use, copy, modify, merge, publish,
  13. // distribute, sublicense, and/or sell copies of the Software, and to
  14. // permit persons to whom the Software is furnished to do so, subject to
  15. // the following conditions:
  16. //
  17. // The above copyright notice and this permission notice shall be
  18. // included in all copies or substantial portions of the Software.
  19. //
  20. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  21. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  22. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  23. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  24. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  25. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  26. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  27. //
  28. using NUnit.Framework;
  29. using System;
  30. using System.Drawing;
  31. using System.Drawing.Drawing2D;
  32. using System.Security.Permissions;
  33. namespace MonoTests.System.Drawing.Drawing2D
  34. {
  35. [TestFixture]
  36. [SecurityPermission (SecurityAction.Deny, UnmanagedCode = true)]
  37. public class MatrixTest : Assertion
  38. {
  39. [TearDown]
  40. public void TearDown () { }
  41. [SetUp]
  42. public void SetUp () { }
  43. [Test]
  44. public void Constructors ()
  45. {
  46. {
  47. Matrix matrix = new Matrix ();
  48. AssertEquals ("C#1", 6, matrix.Elements.Length);
  49. }
  50. {
  51. Matrix matrix = new Matrix (10, 20, 30, 40, 50, 60);
  52. AssertEquals ("C#2", 6, matrix.Elements.Length);
  53. AssertEquals ("C#3", 10, matrix.Elements[0]);
  54. AssertEquals ("C#4", 20, matrix.Elements[1]);
  55. AssertEquals ("C#5", 30, matrix.Elements[2]);
  56. AssertEquals ("C#6", 40, matrix.Elements[3]);
  57. AssertEquals ("C#7", 50, matrix.Elements[4]);
  58. AssertEquals ("C#8", 60, matrix.Elements[5]);
  59. }
  60. }
  61. // Properties
  62. [Test]
  63. public void Invertible ()
  64. {
  65. Matrix matrix = new Matrix (123, 24, 82, 16, 47, 30);
  66. AssertEquals ("I#1", false, matrix.IsInvertible);
  67. matrix = new Matrix (156, 46, 0, 0, 106, 19);
  68. AssertEquals ("I#2", false, matrix.IsInvertible);
  69. matrix = new Matrix (146, 66, 158, 104, 42, 150);
  70. AssertEquals ("I#3", true, matrix.IsInvertible);
  71. matrix = new Matrix (119, 140, 145, 74, 102, 58);
  72. AssertEquals ("I#4", true, matrix.IsInvertible);
  73. }
  74. [Test]
  75. public void IsIdentity ()
  76. {
  77. Matrix matrix = new Matrix (123, 24, 82, 16, 47, 30);
  78. AssertEquals ("N#1", false, matrix.IsIdentity);
  79. matrix = new Matrix (1, 0, 0, 1, 0, 0);
  80. AssertEquals ("N#2", true, matrix.IsIdentity);
  81. }
  82. [Test]
  83. public void IsOffsetX ()
  84. {
  85. Matrix matrix = new Matrix (123, 24, 82, 16, 47, 30);
  86. AssertEquals ("X#1", 47, matrix.OffsetX);
  87. }
  88. [Test]
  89. public void IsOffsetY ()
  90. {
  91. Matrix matrix = new Matrix (123, 24, 82, 16, 47, 30);
  92. AssertEquals ("Y#1", 30, matrix.OffsetY);
  93. }
  94. // Elements Property is checked implicity in other test
  95. //
  96. // Methods
  97. //
  98. [Test]
  99. public void Clone ()
  100. {
  101. Matrix matsrc = new Matrix (10, 20, 30, 40, 50, 60);
  102. Matrix matrix = matsrc.Clone ();
  103. AssertEquals ("D#1", 6, matrix.Elements.Length);
  104. AssertEquals ("D#2", 10, matrix.Elements[0]);
  105. AssertEquals ("D#3", 20, matrix.Elements[1]);
  106. AssertEquals ("D#4", 30, matrix.Elements[2]);
  107. AssertEquals ("D#5", 40, matrix.Elements[3]);
  108. AssertEquals ("D#6", 50, matrix.Elements[4]);
  109. AssertEquals ("D#7", 60, matrix.Elements[5]);
  110. }
  111. [Test]
  112. public void Reset ()
  113. {
  114. Matrix matrix = new Matrix (51, 52, 53, 54, 55, 56);
  115. matrix.Reset ();
  116. AssertEquals ("F#1", 6, matrix.Elements.Length);
  117. AssertEquals ("F#2", 1, matrix.Elements[0]);
  118. AssertEquals ("F#3", 0, matrix.Elements[1]);
  119. AssertEquals ("F#4", 0, matrix.Elements[2]);
  120. AssertEquals ("F#5", 1, matrix.Elements[3]);
  121. AssertEquals ("F#6", 0, matrix.Elements[4]);
  122. AssertEquals ("F#7", 0, matrix.Elements[5]);
  123. }
  124. [Test]
  125. public void Rotate ()
  126. {
  127. Matrix matrix = new Matrix (10, 20, 30, 40, 50, 60);
  128. matrix.Rotate (180);
  129. AssertEquals ("H#1", -10, matrix.Elements[0]);
  130. AssertEquals ("H#2", -20, matrix.Elements[1]);
  131. AssertEquals ("H#3", -30, matrix.Elements[2]);
  132. AssertEquals ("H#4", -40, matrix.Elements[3]);
  133. AssertEquals ("H#5", 50, matrix.Elements[4]);
  134. AssertEquals ("H#6", 60, matrix.Elements[5]);
  135. }
  136. [Test]
  137. public void RotateAt ()
  138. {
  139. Matrix matrix = new Matrix (10, 20, 30, 40, 50, 60);
  140. matrix.RotateAt (180, new PointF (10, 10));
  141. AssertEquals ("I#1", -10, matrix.Elements[0]);
  142. AssertEquals ("I#2", -20, matrix.Elements[1]);
  143. AssertEquals ("I#3", -30, matrix.Elements[2]);
  144. AssertEquals ("I#4", -40, matrix.Elements[3]);
  145. AssertEquals ("I#5", 850, matrix.Elements[4]);
  146. AssertEquals ("I#6", 1260, matrix.Elements[5]);
  147. }
  148. [Test]
  149. public void Multiply ()
  150. {
  151. Matrix matrix = new Matrix (10, 20, 30, 40, 50, 60);
  152. matrix.Multiply (new Matrix (10, 20, 30, 40, 50, 60));
  153. AssertEquals ("J#1", 700, matrix.Elements[0]);
  154. AssertEquals ("J#2", 1000, matrix.Elements[1]);
  155. AssertEquals ("J#3", 1500, matrix.Elements[2]);
  156. AssertEquals ("J#4", 2200, matrix.Elements[3]);
  157. AssertEquals ("J#5", 2350, matrix.Elements[4]);
  158. AssertEquals ("J#6", 3460, matrix.Elements[5]);
  159. }
  160. [Test]
  161. public void Equals ()
  162. {
  163. Matrix mat1 = new Matrix (10, 20, 30, 40, 50, 60);
  164. Matrix mat2 = new Matrix (10, 20, 30, 40, 50, 60);
  165. Matrix mat3 = new Matrix (10, 20, 30, 40, 50, 10);
  166. AssertEquals ("E#1", true, mat1.Equals (mat2));
  167. AssertEquals ("E#2", false, mat2.Equals (mat3));
  168. AssertEquals ("E#3", false, mat1.Equals (mat3));
  169. }
  170. [Test]
  171. public void Invert ()
  172. {
  173. Matrix matrix = new Matrix (1, 2, 3, 4, 5, 6);
  174. matrix.Invert ();
  175. AssertEquals ("V#1", -2, matrix.Elements[0]);
  176. AssertEquals ("V#2", 1, matrix.Elements[1]);
  177. AssertEquals ("V#3", 1.5, matrix.Elements[2]);
  178. AssertEquals ("V#4", -0.5, matrix.Elements[3]);
  179. AssertEquals ("V#5", 1, matrix.Elements[4]);
  180. AssertEquals ("V#6", -2, matrix.Elements[5]);
  181. }
  182. [Test]
  183. public void Scale ()
  184. {
  185. Matrix matrix = new Matrix (10, 20, 30, 40, 50, 60);
  186. matrix.Scale (2, 4);
  187. AssertEquals ("S#1", 20, matrix.Elements[0]);
  188. AssertEquals ("S#2", 40, matrix.Elements[1]);
  189. AssertEquals ("S#3", 120, matrix.Elements[2]);
  190. AssertEquals ("S#4", 160, matrix.Elements[3]);
  191. AssertEquals ("S#5", 50, matrix.Elements[4]);
  192. AssertEquals ("S#6", 60, matrix.Elements[5]);
  193. }
  194. [Test]
  195. public void Shear ()
  196. {
  197. Matrix matrix = new Matrix (10, 20, 30, 40, 50, 60);
  198. matrix.Shear (2, 4);
  199. AssertEquals ("H#1", 130, matrix.Elements[0]);
  200. AssertEquals ("H#2", 180, matrix.Elements[1]);
  201. AssertEquals ("H#3", 50, matrix.Elements[2]);
  202. AssertEquals ("H#4", 80, matrix.Elements[3]);
  203. AssertEquals ("H#5", 50, matrix.Elements[4]);
  204. AssertEquals ("H#6", 60, matrix.Elements[5]);
  205. matrix = new Matrix (5, 3, 9, 2, 2, 1);
  206. matrix.Shear (10, 20);
  207. AssertEquals ("H#7", 185, matrix.Elements[0]);
  208. AssertEquals ("H#8", 43, matrix.Elements[1]);
  209. AssertEquals ("H#9", 59, matrix.Elements[2]);
  210. AssertEquals ("H#10", 32, matrix.Elements[3]);
  211. AssertEquals ("H#11", 2, matrix.Elements[4]);
  212. AssertEquals ("H#12", 1, matrix.Elements[5]);
  213. }
  214. [Test]
  215. public void TransformPoints ()
  216. {
  217. Matrix matrix = new Matrix (2, 4, 6, 8, 10, 12);
  218. PointF [] pointsF = new PointF [] {new PointF (2, 4), new PointF (4, 8)};
  219. matrix.TransformPoints (pointsF);
  220. AssertEquals ("K#1", 38, pointsF[0].X);
  221. AssertEquals ("K#2", 52, pointsF[0].Y);
  222. AssertEquals ("K#3", 66, pointsF[1].X);
  223. AssertEquals ("K#4", 92, pointsF[1].Y);
  224. Point [] points = new Point [] {new Point (2, 4), new Point (4, 8)};
  225. matrix.TransformPoints (points);
  226. AssertEquals ("K#5", 38, pointsF[0].X);
  227. AssertEquals ("K#6", 52, pointsF[0].Y);
  228. AssertEquals ("K#7", 66, pointsF[1].X);
  229. AssertEquals ("K#8", 92, pointsF[1].Y);
  230. }
  231. [Test]
  232. public void TransformVectors ()
  233. {
  234. Matrix matrix = new Matrix (2, 4, 6, 8, 10, 12);
  235. PointF [] pointsF = new PointF [] {new PointF (2, 4), new PointF (4, 8)};
  236. matrix.TransformVectors (pointsF);
  237. AssertEquals ("N#1", 28, pointsF[0].X);
  238. AssertEquals ("N#2", 40, pointsF[0].Y);
  239. AssertEquals ("N#3", 56, pointsF[1].X);
  240. AssertEquals ("N#4", 80, pointsF[1].Y);
  241. Point [] points = new Point [] {new Point (2, 4), new Point (4, 8)};
  242. matrix.TransformVectors (points);
  243. AssertEquals ("N#5", 28, pointsF[0].X);
  244. AssertEquals ("N#6", 40, pointsF[0].Y);
  245. AssertEquals ("N#7", 56, pointsF[1].X);
  246. AssertEquals ("N#8", 80, pointsF[1].Y);
  247. }
  248. [Test]
  249. public void Translate ()
  250. {
  251. Matrix matrix = new Matrix (2, 4, 6, 8, 10, 12);
  252. matrix.Translate (5, 10);
  253. AssertEquals ("Y#1", 2, matrix.Elements[0]);
  254. AssertEquals ("Y#2", 4, matrix.Elements[1]);
  255. AssertEquals ("Y#3", 6, matrix.Elements[2]);
  256. AssertEquals ("Y#4", 8, matrix.Elements[3]);
  257. AssertEquals ("Y#5", 80, matrix.Elements[4]);
  258. AssertEquals ("Y#6", 112, matrix.Elements[5]);
  259. }
  260. }
  261. }