摘要:
#include #include LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam); void DrawRectangle(HWND hwnd); int cxClient, cyClient; int WINAPI WinMain(HINSTANCE hInstance, ... 阅读全文
摘要:
LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { HDC hdc; PAINTSTRUCT ps; static RECT rect,rect2,rect3; static cxClient, cyClient; static HBRUSH h... 阅读全文
摘要:
上面只修改了大小对应,下面则修改了方向: 阅读全文
摘要:
正弦函数练习 坐标转换 阅读全文
摘要:
1. 注意无论映射模式是哪一种:所获得的信息都是以像素为单位的 2.客户区设备坐标是指客户区左上角,全窗口坐标是指窗口左上角(包括标题栏等getwindowsdc获取) 阅读全文
摘要:
写着写着就困了.... 看这些测量数据就算了,是对各种函数的练习 阅读全文
摘要:
#include <windows.h>#include <math.h>LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);#define R 200#define PI 3.1415926 阅读全文
摘要:
LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { HDC hdc; PAINTSTRUCT ps; RECT rect; static HBRUSH hBrush, hOldBrush; switch (message) { c... 阅读全文
摘要:
wsgiref使用 from wsgiref.simple_server import make_server from urls import URLS def RunServer(environ, start_respone): start_respone('200 OK',[('Content 阅读全文
摘要:
import bin if __name__ == "__main__": bin.run(); from wsgiref.simple_server import make_server from urls import URLS def RunServer(environ, start_resp 阅读全文
摘要:
总的来说php相对较为简单,但是内部封装太多,不利于对编程的更本质探索。 但是对于生产开发确实是一门不错的语言。python对于socket以及web框架的理解更加透彻 这一方法缺少文件的分类不满足MVC标准,毕竟只是初识(再次理解) 阅读全文