且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

用C ++绘制点

更新时间:2021-07-29 23:26:53

绘图意味着输出一些带有坐标的像素颜色。一种方法是绘制自己或使用一些库或类。



基础知识在文章中解释 GDI绘图和打印和一些高级类高速制图控制



你也可以用python绘图,但我只知道海龟库。但我认为它比C ++慢得多。
Drawing means to output some pixel colors with coordinates on the monitor. One way is to draw yourself or use some library or classes.

The basics are explained in the article GDI Drawing and Printing and some advanced class High-speed Charting Control.

You can also draw with python, but I only know the turtle library. But I think it is much slower than C++.


我不想画画。我有点我想看看这些点如何在xy平面上散射。

点不会有特定的形状。点可能代表线或簇。
I don't want to draw. I have points I want see how these point scatter in the x-y plane.
It the points won't have a specific shape.Points may represent line or cluster.