PaintWorks icon indicating copy to clipboard operation
PaintWorks copied to clipboard

基于Qt,自行实现底层绘图算法的绘图系统/画板

Results 6 PaintWorks issues
Sort by recently updated
recently updated
newest added

您好,我想在您程序的基础上实现画图和填充的过程逐点打印,而不是直接全部画出,请问您有什么建议么,谢谢您。

你好,我想在你现有的基础上添加框选多个图形,椭圆旋转,登录的功能,将之作为我的毕业设计,来征求你的同意。

请问一下,你这个是Qt的哪个版本写的,我用5.9版本打开编译报错:“cl: 命令行 error D8021 :无效的数值参数“/Wno-sign-compare””

在 ``` Circle::~Circle() { for(Point *p : fillPoints){ delete p; } for(Point *p : points){ delete p; } } ``` 应该要增加 ``` Circle::~Circle() { for(Point *p : fillPoints){ delete p;...