DebugCanvas.cs
上传用户:tjjgrl
上传日期:2019-04-04
资源大小:1010k
文件大小:1k
源码类别:

电子政务应用

开发平台:

C#

  1. using System;
  2. using Line = ThoughtWorks.QRCode.Geom.Line;
  3. using Point = ThoughtWorks.QRCode.Geom.Point;
  4. namespace ThoughtWorks.QRCode.Codec.Util
  5. {
  6. public interface DebugCanvas
  7. {
  8. void  println(String str);
  9. void  drawPoint(Point point, int color);
  10. void  drawCross(Point point, int color);
  11. void  drawPoints(Point[] points, int color);
  12. void  drawLine(Line line, int color);
  13. void  drawLines(Line[] lines, int color);
  14. void  drawPolygon(Point[] points, int color);
  15. void  drawMatrix(bool[][] matrix);
  16. }
  17. }