首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
setpixel专题
基于MCF setPixel函数的画板程序(一)架构设计
流程设计 类设计 DrawElement类 #pragma once#include <vector>using namespace std;class PaintElement {private:std::vector<CPoint> paintLine;COLORREF color;int weight;int mod;public :void AddPoint(CP
阅读更多...