ConsoleCanvas.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 class ConsoleCanvas : DebugCanvas
  7.     {
  8.         public void println(String str)
  9.         {
  10.             Console.WriteLine(str);
  11.         }
  12.         public void drawPoint(Point point, int color)
  13.         {
  14.         }
  15.         public void drawCross(Point point, int color)
  16.         {
  17.         }
  18.         public void drawPoints(Point[] points, int color)
  19.         {
  20.         }
  21.         public void drawLine(Line line, int color)
  22.         {
  23.         }
  24.         public void drawLines(Line[] lines, int color)
  25.         {
  26.         }
  27.         public void drawPolygon(Point[] points, int color)
  28.         {
  29.         }
  30.         public void drawMatrix(bool[][] matrix)
  31.         {
  32.         
  33.         }
  34.     }
  35. }