ColorMatrix.cs 7.2 KB

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