当前位置:网站首页>Drawing dynamic 3D circle with pure C language
Drawing dynamic 3D circle with pure C language
2022-07-05 05:20:00 【Korloa】
Recently, I found something about using C Language in Windows Environment to draw dynamic circle code , It is worth learning from .
Everyone knows ,C/C++ Born with a black window , Only characters . But running the following code will definitely surprise you .
Be careful :
The code may need to add the following code to the compilation options to run
-lgdi32Code:
#include <math.h>
#include <windows.h>
#define PI 3.1415926
#define SX 8
#define SY 16
#define DX PI / SX
#define DY PI * 2 / SY
#define X(a, b) (cx + v[a][b].x * r), (cy + v[a][b].y * r)
typedef struct { double x, y; } Vec;
void calc(double i, double j, double rot, Vec* v) {
double x = sin(i) * cos(j), y = sin(i) * sin(j), z = cos(i),
s = sin(rot), c = cos(rot), c1 = 1 - c, u = 1 / sqrt(3.0f), u2 = u * u;
v->x = x * (c + u2 * c1) + y * (u2 * c1 - u * s) + z * (u2 * c1 + u * s);
v->y = x * (u2 * c1 + u * s) + y * (c + u2 * c1) + z * (u2 * c1 - u * s);
}
int main() {
HWND hwnd = GetConsoleWindow(); HDC hdc1 = GetDC(hwnd);
double rot = 0;
while(1) {
RECT rect; GetClientRect(hwnd, &rect); int w = rect.right, h = rect.bottom, cx = w / 2, cy = h / 2, r = h * 0.375;
HDC hdc2 = CreateCompatibleDC(hdc1); HBITMAP bmp = CreateCompatibleBitmap(hdc1, w, h); SelectObject(hdc2, bmp);
SelectObject(hdc2, GetStockObject(WHITE_PEN));
Vec v[SX + 1][SY + 1];
for(int i = 0; i <= SX; ++i) for(int j = 0; j <= SY; ++j) calc(i * DX, j * DY, rot, &v[i][j]);
for(int i = 0; i < SX; ++i) for(int j = 0; j < SY; ++j) {
MoveToEx(hdc2, X(i, j), NULL); LineTo(hdc2, X(i + 1, j));
MoveToEx(hdc2, X(i, j), NULL); LineTo(hdc2, X(i, j + 1));
}
BitBlt(hdc1, 0, 0, w, h, hdc2, 0, 0, SRCCOPY); DeleteObject(bmp); DeleteDC(hdc2);
rot += 0.01; Sleep(10);
}
}边栏推荐
- BUUCTF MISC
- Pointnet++学习
- Binary search basis
- Embedded database development programming (zero)
- 2022 / 7 / 1 Résumé de l'étude
- [转]MySQL操作实战(一):关键字 & 函数
- Merge sort
- Remote upgrade afraid of cutting beard? Explain FOTA safety upgrade in detail
- [turn to] MySQL operation practice (I): Keywords & functions
- JVM call not used once in ten years
猜你喜欢
随机推荐
JVM call not used once in ten years
Transport connection management of TCP
Haut OJ 1350: choice sends candy
[turn]: OSGi specification in simple terms
Introduction to tools in TF-A
Add level control and logger level control of Solon logging plug-in
sync.Mutex源码解读
Solon Logging 插件的添加器级别控制和日志器的级别控制
Django reports an error when connecting to the database. What is the reason
Page countdown
room数据库的使用
[to be continued] [UE4 notes] L3 import resources and project migration
xftp7与xshell7下载(官网)
Haut OJ 1243: simple mathematical problems
Lua wechat avatar URL
Es module and commonjs learning notes -- ESM and CJS used in nodejs
[turn to] MySQL operation practice (III): table connection
Listview is added and deleted at the index
When will Wei Lai, who has been watched by public opinion, start to "build high-rise buildings" again?
Heap sort summary
![[turn]: OSGi specification in simple terms](/img/54/d73a8d3e375dfe430c2eca39617b9c.png)


![[转]MySQL操作实战(一):关键字 & 函数](/img/b1/8b843014f365b786e310718f669043.png)





