请问:许多图形处理函数都需要横纵坐标作参数,那如果我想在窗口的特定位置进行画图,我要怎么知道那个特定点的横纵坐标呢? |
|
在网上搜vc绘图,然后安装之后包含graphics.h头文件就可以随意的绘图了
|
|
10分 |
那要看你的窗口大小, 比如 1280*720,那么你按比例计算即可
|
GetClientRect
The GetClientRect function retrieves the coordinates of a window””s client area. The client coordinates specify the upper-left and lower-right corners of the client area. Because client coordinates are relative to the upper-left corner of a window””s client area, the coordinates of the upper-left corner are (0,0). BOOL GetClientRect( If the function fails, the return value is zero. To get extended error information, callGetLastError. Remarks QuickInfo See Also
|
|
赵4老师,你好,我英语不好。。。请问一下:如果我已经画一个五子棋的棋盘的话,要在棋盘上某个特定地点落子,如何确定棋子的坐标以便在我能在那个特定地点画棋子呢?就比如说我要在棋盘的第3行第4列画棋子,我怎么知道第3行第4列的横纵坐标是多少呢 |
|
30分 |
y坐标=第3行×每行所占像素高度
x坐标=第4列×每列所占像素宽度 |