ColorMatrix.cs 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. //
  2. // System.Drawing.Imaging.xxx.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Everaldo Canuto
  6. // eMail: [email protected]
  7. // Dennis Hayes ([email protected])
  8. //
  9. using System;
  10. namespace System.Drawing.Imaging {
  11. public sealed class ColorMatrix {
  12. // constructors
  13. //[MonoTODO]
  14. public ColorMatrix() {
  15. throw new NotImplementedException ();
  16. }
  17. //[MonoTODO]
  18. public ColorMatrix(float[][] newColorMatrix) {
  19. throw new NotImplementedException ();
  20. }
  21. // properties
  22. //[MonoTODO]
  23. public float this[int row, int column] {
  24. get { throw new NotImplementedException (); }
  25. set { throw new NotImplementedException (); }
  26. }
  27. //[MonoTODO]
  28. public float Matrix00 {
  29. get { throw new NotImplementedException (); }
  30. set { throw new NotImplementedException (); }
  31. }
  32. //[MonoTODO]
  33. public float Matrix01 {
  34. get { throw new NotImplementedException (); }
  35. set { throw new NotImplementedException (); }
  36. }
  37. //[MonoTODO]
  38. public float Matrix02 {
  39. get { throw new NotImplementedException (); }
  40. set { throw new NotImplementedException (); }
  41. }
  42. //[MonoTODO]
  43. public float Matrix03 {
  44. get { throw new NotImplementedException (); }
  45. set { throw new NotImplementedException (); }
  46. }
  47. //[MonoTODO]
  48. public float Matrix04 {
  49. get { throw new NotImplementedException (); }
  50. set { throw new NotImplementedException (); }
  51. }
  52. //[MonoTODO]
  53. public float Matrix05 {
  54. get { throw new NotImplementedException (); }
  55. set { throw new NotImplementedException (); }
  56. }
  57. //[MonoTODO]
  58. public float Matrix06 {
  59. get { throw new NotImplementedException (); }
  60. set { throw new NotImplementedException (); }
  61. }
  62. //[MonoTODO]
  63. public float Matrix07 {
  64. get { throw new NotImplementedException (); }
  65. set { throw new NotImplementedException (); }
  66. }
  67. //[MonoTODO]
  68. public float Matrix08 {
  69. get { throw new NotImplementedException (); }
  70. set { throw new NotImplementedException (); }
  71. }
  72. //[MonoTODO]
  73. public float Matrix09 {
  74. get { throw new NotImplementedException (); }
  75. set { throw new NotImplementedException (); }
  76. }
  77. //[MonoTODO]
  78. public float Matrix10 {
  79. get { throw new NotImplementedException (); }
  80. set { throw new NotImplementedException (); }
  81. }
  82. //[MonoTODO]
  83. public float Matrix11 {
  84. get { throw new NotImplementedException (); }
  85. set { throw new NotImplementedException (); }
  86. }
  87. //[MonoTODO]
  88. public float Matrix12 {
  89. get { throw new NotImplementedException (); }
  90. set { throw new NotImplementedException (); }
  91. }
  92. //[MonoTODO]
  93. public float Matrix13 {
  94. get { throw new NotImplementedException (); }
  95. set { throw new NotImplementedException (); }
  96. }
  97. //[MonoTODO]
  98. public float Matrix14 {
  99. get { throw new NotImplementedException (); }
  100. set { throw new NotImplementedException (); }
  101. }
  102. //[MonoTODO]
  103. public float Matrix15 {
  104. get { throw new NotImplementedException (); }
  105. set { throw new NotImplementedException (); }
  106. }
  107. //[MonoTODO]
  108. public float Matrix16 {
  109. get { throw new NotImplementedException (); }
  110. set { throw new NotImplementedException (); }
  111. }
  112. //[MonoTODO]
  113. public float Matrix17 {
  114. get { throw new NotImplementedException (); }
  115. set { throw new NotImplementedException (); }
  116. }
  117. //[MonoTODO]
  118. public float Matrix18 {
  119. get { throw new NotImplementedException (); }
  120. set { throw new NotImplementedException (); }
  121. }
  122. //[MonoTODO]
  123. public float Matrix19 {
  124. get { throw new NotImplementedException (); }
  125. set { throw new NotImplementedException (); }
  126. }
  127. //[MonoTODO]
  128. public float Matrix20 {
  129. get { throw new NotImplementedException (); }
  130. set { throw new NotImplementedException (); }
  131. }
  132. //[MonoTODO]
  133. public float Matrix21 {
  134. get { throw new NotImplementedException (); }
  135. set { throw new NotImplementedException (); }
  136. }
  137. //[MonoTODO]
  138. public float Matrix22 {
  139. get { throw new NotImplementedException (); }
  140. set { throw new NotImplementedException (); }
  141. }
  142. //[MonoTODO]
  143. public float Matrix23 {
  144. get { throw new NotImplementedException (); }
  145. set { throw new NotImplementedException (); }
  146. }
  147. //[MonoTODO]
  148. public float Matrix24 {
  149. get { throw new NotImplementedException (); }
  150. set { throw new NotImplementedException (); }
  151. }
  152. //[MonoTODO]
  153. public float Matrix25 {
  154. get { throw new NotImplementedException (); }
  155. set { throw new NotImplementedException (); }
  156. }
  157. //[MonoTODO]
  158. public float Matrix26 {
  159. get { throw new NotImplementedException (); }
  160. set { throw new NotImplementedException (); }
  161. }
  162. //[MonoTODO]
  163. public float Matrix27 {
  164. get { throw new NotImplementedException (); }
  165. set { throw new NotImplementedException (); }
  166. }
  167. //[MonoTODO]
  168. public float Matrix28 {
  169. get { throw new NotImplementedException (); }
  170. set { throw new NotImplementedException (); }
  171. }
  172. //[MonoTODO]
  173. public float Matrix29 {
  174. get { throw new NotImplementedException (); }
  175. set { throw new NotImplementedException (); }
  176. }
  177. //[MonoTODO]
  178. public float Matrix30 {
  179. get { throw new NotImplementedException (); }
  180. set { throw new NotImplementedException (); }
  181. }
  182. //[MonoTODO]
  183. public float Matrix31 {
  184. get { throw new NotImplementedException (); }
  185. set { throw new NotImplementedException (); }
  186. }
  187. //[MonoTODO]
  188. public float Matrix32 {
  189. get { throw new NotImplementedException (); }
  190. set { throw new NotImplementedException (); }
  191. }
  192. //[MonoTODO]
  193. public float Matrix33 {
  194. get { throw new NotImplementedException (); }
  195. set { throw new NotImplementedException (); }
  196. }
  197. //[MonoTODO]
  198. public float Matrix34 {
  199. get { throw new NotImplementedException (); }
  200. set { throw new NotImplementedException (); }
  201. }
  202. //[MonoTODO]
  203. public float Matrix35 {
  204. get { throw new NotImplementedException (); }
  205. set { throw new NotImplementedException (); }
  206. }
  207. //[MonoTODO]
  208. public float Matrix36 {
  209. get { throw new NotImplementedException (); }
  210. set { throw new NotImplementedException (); }
  211. }
  212. //[MonoTODO]
  213. public float Matrix37 {
  214. get { throw new NotImplementedException (); }
  215. set { throw new NotImplementedException (); }
  216. }
  217. //[MonoTODO]
  218. public float Matrix38 {
  219. get { throw new NotImplementedException (); }
  220. set { throw new NotImplementedException (); }
  221. }
  222. //[MonoTODO]
  223. public float Matrix39 {
  224. get { throw new NotImplementedException (); }
  225. set { throw new NotImplementedException (); }
  226. }
  227. //[MonoTODO]
  228. public float Matrix40 {
  229. get { throw new NotImplementedException (); }
  230. set { throw new NotImplementedException (); }
  231. }
  232. //[MonoTODO]
  233. public float Matrix41 {
  234. get { throw new NotImplementedException (); }
  235. set { throw new NotImplementedException (); }
  236. }
  237. //[MonoTODO]
  238. public float Matrix42 {
  239. get { throw new NotImplementedException (); }
  240. set { throw new NotImplementedException (); }
  241. }
  242. //[MonoTODO]
  243. public float Matrix43 {
  244. get { throw new NotImplementedException (); }
  245. set { throw new NotImplementedException (); }
  246. }
  247. //[MonoTODO]
  248. public float Matrix44 {
  249. get { throw new NotImplementedException (); }
  250. set { throw new NotImplementedException (); }
  251. }
  252. }
  253. }