求一个能运行的Bresenham画线算法,如果能用鼠标画就更好了,最好是用C++写的.采纳后会再送上100分!要是有源文件就好了,我对这个不是很清楚呀!

来源:学生作业帮助网 编辑:作业帮 时间:2024/04/28 01:09:31
求一个能运行的Bresenham画线算法,如果能用鼠标画就更好了,最好是用C++写的.采纳后会再送上100分!要是有源文件就好了,我对这个不是很清楚呀!

求一个能运行的Bresenham画线算法,如果能用鼠标画就更好了,最好是用C++写的.采纳后会再送上100分!要是有源文件就好了,我对这个不是很清楚呀!
求一个能运行的Bresenham画线算法,如果能用鼠标画就更好了,最好是用C++写的.采纳后会再送上100分!
要是有源文件就好了,我对这个不是很清楚呀!

求一个能运行的Bresenham画线算法,如果能用鼠标画就更好了,最好是用C++写的.采纳后会再送上100分!要是有源文件就好了,我对这个不是很清楚呀!
#include
void Bresenham(HDC hdc,int x1,int y1,int x2,int y2);
/* Declare Windows procedure */
LRESULT CALLBACK WindowProcedure (HWND,UINT,WPARAM,LPARAM);
/* Make the class name into a global variable */
char szClassName[ ] = "WinClassName";
int WINAPI WinMain (HINSTANCE hThisInstance,
HINSTANCE hPrevInstance,
LPSTR lpszArgument,
int nCmdShow)
{
HWND hwnd; /* This is the handle for our window */
MSG msg; /* Here messages to the application are saved */
WNDCLASSEX wincl; /* Data structure for the windowclass */
/* The Window structure */
wincl.hInstance = hThisInstance;
wincl.lpszClassName = szClassName;
wincl.lpfnWndProc = WindowProcedure; /* This function is called by windows */
wincl.style = CS_DBLCLKS; /* Catch double-clicks */
wincl.cbSize = sizeof (WNDCLASSEX);
/* Use default icon and mouse-pointer */
wincl.hIcon = LoadIcon (NULL,IDI_APPLICATION);
wincl.hIconSm = LoadIcon (NULL,IDI_APPLICATION);
wincl.hCursor = LoadCursor (NULL,IDC_CROSS);
wincl.lpszMenuName = NULL; /* No menu */
wincl.cbClsExtra = 0; /* No extra bytes after the window class */
wincl.cbWndExtra = 0; /* structure or the window instance */
/* Use Windows's default colour as the background of the window */
wincl.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
/* Register the window class,and if it fails quit the program */
if (!RegisterClassEx (&wincl))
return 0;
/* The class is registered,let's create the program*/
hwnd = CreateWindowEx (
0,/* Extended possibilites for variation */
szClassName,/* Classname */
"Bresenham",/* Title Text */
WS_OVERLAPPEDWINDOW,/* default window */
CW_USEDEFAULT,/* Windows decides the position */
CW_USEDEFAULT,/* where the window ends up on the screen */
544,/* The programs width */
375,/* and height in pixels */
HWND_DESKTOP,/* The window is a child-window to desktop */
NULL,/* No menu */
hThisInstance,/* Program Instance handler */
NULL /* No Window Creation data */
);
/* Make the window visible on the screen */
ShowWindow (hwnd,nCmdShow);
/* Run the message loop.It will run until GetMessage() returns 0 */
while (GetMessage (&msg,NULL,0,0))
{
/* Translate virtual-key messages into character messages */
TranslateMessage(&msg);
/* Send message to WindowProcedure */
DispatchMessage(&msg);
}
/* The program return-value is 0 - The value that PostQuitMessage() gave */
return msg.wParam;
}
/* This function is called by the Windows function DispatchMessage() */
LRESULT CALLBACK WindowProcedure (HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam)
{
HDC hdc;
PAINTSTRUCT ps;
static int x1,x2,y1,y2;
switch (message) /* handle the messages */
{
case WM_LBUTTONDOWN:
x1=LOWORD(lParam);
y1=HIWORD(lParam);
break;
case WM_LBUTTONUP:
x2=LOWORD(lParam);
y2=HIWORD(lParam);
hdc=GetDC(hwnd);
Bresenham(hdc,x1,y1,x2,y2);
ReleaseDC(hwnd,hdc);
break;
case WM_PAINT:
hdc=BeginPaint(hwnd,&ps);
EndPaint(hwnd,&ps);
break;
case WM_DESTROY:
PostQuitMessage (0); /* send a WM_QUIT to the message queue */
break;
default:/* for messages that we don't deal with */
return DefWindowProc (hwnd,message,wParam,lParam);
}
return 0;
}
void Bresenham(HDC hdc,int x1,int y1,int x2,int y2)
{
int t,x,y,dx,dy,error;
bool flag = abs(y2-y1)>abs(x2-x1);
if( flag )
{
t=x1;x1=y1;y1=t;
t=x2;x2=y2;y2=t;
}
if( x1>x2 )
{
t=x1;x1=x2;x2=t;
t=y1;y1=y2;y2=t;
}
dx=x2-x1;
dy=abs(y2-y1);
error=dx/2;
for(x=x1,y=y1;x

求一个能运行的Bresenham画线算法,如果能用鼠标画就更好了,最好是用C++写的.采纳后会再送上100分!要是有源文件就好了,我对这个不是很清楚呀! 编程实现中点画线法的直线的绘制和Bresenham算法的直线绘制全部分,求上传 请问各位大侠,如何用Java实现DDA画线算法,逐点画线算法,BRESENHAM画线算法?最好能把源代码发到我的邮箱里,谢谢了,非常感谢.我的邮箱:yinan666@163.com bresenham画线算法与计算机图形学画线算法有什么不同? 计算机图形学直线生成算法包含DDA算法,中点Bresenham算法,改进的Bresenham算法的完整c语言程序代码, 求比较数值微分法中点画线法 bresenham生成直线优缺点. 计算机图形学 Bresenham 画线算法和DDA 画线算法新人,刚刚学习计算机图形学,遇到两个小题,1.使用Bresenham 画线算法,画这样一条线段:端点为(20,10)和(30,18) 2.使用DDA 画线算法,画这样一条线 计算机图形学 Bresenham 画线算法和DDA 画线算法新人,刚刚学习计算机图形学,遇到两个小题,1.使用Bresenham 画线算法,画这样一条线段:端点为(20,10)和(30,18) 2.使用DDA 画线算法,画这样一条线 求用实数编码的遗传算法的简单例子.要求能运行,要有注释. 请问中点bresenham算法画圆与bresenham算法画圆有区别吗? 求一个很短的先来先服务或者最短作业优先算法的代码.是C++的……能运行的……越短越好.同时求大体的对代码的解释 试推导任意圆的中点Bresenham画圆算法(要求写清原理、误差函数、递推公式及最终的画图过程) 谁有中点画线法绘直线,bresenham画线法绘直线,多边形,bresenham画圆法,还有汉字生成的c语言源程序这些计算机图形学中的问题,对我这个c语言学的不好的真实很难办到,也学对您来说就是小菜一 编写一个程序,计算n=1+2+3+.50的算法求一个可以全一点代码,可以直接运行的 Dijkstra算法算最短路径急求一个Dijkstra算最短路径的代码,要完整的(包括头文件,生成距阵),可直接运行的. 实现全球电视转播,只需发射3颗同步卫星在赤道平面上空运行?这是怎么算得的?我是求算法,不是来确认一个常识 比较数值微分法 中点画线法 bresenham生成直线优缺点,感激不尽, 怎么求移动平均值?能给我一个详细的算法吗?