计算机图形学教程(当成笔记用)
https://blog.csdn.net/eastmount/article/details/53180524
MFC写代码通常在xxxView.cpp文件下
1.MFC绘图函数
(1)绘制直线
CDC::MoveTo(int x, int y)
将画笔移动到当前位置,即坐标(x, y)处,并没有画线。
CDC::LineTo(int x, int y)
画笔从当前位置绘制一条子线到(x, y)点,但不包含(x, y)点。
---------------------作者:Eastmount 来源:CSDN 原文:https://blog.csdn.net/eastmount/article/details/53180524?utm_source=copy 版权声明:本文为博主原创文章,转载请附上博文链接!
网友评论