• 大小: 3KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-09
  • 语言: C/C++
  • 标签: 绘图  

资源简介

使用c++写的命令行下的绘图程序,以命令行的字符为像素点,模拟绘图流程

资源截图

代码片段和文件信息


#include “proj08.h“
#include 

int main(int char**args) {

  Painter painter(args[1]);
  painter.CreateCanvas();

  auto result = painter.GetErrorLog().empty() ? 
                painter.GetCanvas() :
                painter.GetErrorLog();

  for (auto &line : result) 
    std::cout << line << “\n“;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         315  2018-11-11 20:38  main.cpp
     文件        4253  2018-11-11 20:19  proj08.cpp
     文件        2488  2018-11-11 19:43  proj08.h
     文件         207  2018-11-11 20:47  说明.txt

评论

共有 条评论