完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
今天看邱毅凌老师的书,提到一个有效率的画斜线的算法,在这分享一下。
该算法完全没有用到乘法和除法,效能相当好,而且画出的斜线不会用锯齿状,这个算法基本与机器无法,系统只要提供画点函数draw_pixel(int x,int y,int nColor)即可。 void draw_line(int x1, int y1, int x2, int y2,int nColor) { int i, deltax, deltay, numpixels, d, dinc1, dinc2, x, xinc1, xinc2, y, yinc1, yinc2; // Calculate delta-x and delta-y for initialization if(x2-x1 < 0) deltax = x1-x2 ; else deltax = x2-x1 ; if(y2-y1 < 0) deltay = y1-y2 ; else deltay = y2-y1 ; // Initialize all vars based on which is the independent variable // if(deltax >= deltay) { //x is independent variable // numpixels = deltax + 1; d = (2 * deltay) - deltax; dinc1 = deltay << 1; dinc2 = (deltay - deltax) << 1; xinc1 = 1; xinc2 = 1; yinc1 = 0; yinc2 = 1; } else { // y is independent variable // numpixels = deltay + 1; d = (2 * deltax) - deltay; dinc1 = deltax << 1; dinc2 = (deltax - deltay) << 1; xinc1 = 0; xinc2 = 1; yinc1 = 1; yinc2 = 1; } // Make sure x and y move in the right directions // if(x1 > x2) { xinc1 = - xinc1; xinc2 = - xinc2; } if(y1 > y2) { yinc1 = - yinc1; yinc2 = - yinc2; } // Start drawing at // x = x1; y = y1; // Draw the pixels // for(i= 1; i< numpixels;i++) { // 画点 draw_pixel(x, y, nColor); if (d < 0) { d = d + dinc1; x = x + xinc1; y = y + yinc1; } else { d = d + dinc2; x = x + xinc2; y = y + yinc2; } } } |
|
相关推荐
3个回答
|
|
我认为一般像这样画圆,画线,画椭圆,画曲线有没有锯齿主要和液晶分辨率有关。差别只是效率高低。现在大部分用的都是类似bresenham算法,我看楼主的也应该属于这一算法。并且板子上带的画圆函数在画小半径圆时太准确,在堪误贴里有改正方法。
|
|
|
|
嗯 去看看
|
|
|
|
谢谢分享
|
|
|
|
只有小组成员才能发言,加入小组>>
调试STM32H750的FMC总线读写PSRAM遇到的问题求解?
1617 浏览 1 评论
X-NUCLEO-IHM08M1板文档中输出电流为15Arms,15Arms是怎么得出来的呢?
1543 浏览 1 评论
977 浏览 2 评论
STM32F030F4 HSI时钟温度测试过不去是怎么回事?
683 浏览 2 评论
ST25R3916能否对ISO15693的标签芯片进行分区域写密码?
1595 浏览 2 评论
1863浏览 9评论
STM32仿真器是选择ST-LINK还是选择J-LINK?各有什么优势啊?
645浏览 4评论
STM32F0_TIM2输出pwm2后OLED变暗或者系统重启是怎么回事?
516浏览 3评论
532浏览 3评论
stm32cubemx生成mdk-arm v4项目文件无法打开是什么原因导致的?
505浏览 3评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-22 12:26 , Processed in 0.714485 second(s), Total 82, Slave 65 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号