gpt4 book ai didi

c 绘图函数无法正确绘图

转载 作者:行者123 更新时间:2023-11-30 15:19:50 26 4
gpt4 key购买 nike

我正在尝试编写一个程序,使用 Tiva C (Tm4C123GXL) 将数字汽车速度表写入 LCD 屏幕 (ST7735)。附加的代码是画线函数,它应该在两个距离之间画一条直线。如果我将 (speed_x1, speed_y1, 80, 60, ST7735_WHITE) 放入函数中,直到 45 度,绘制的线是水平的,而不是应有的角度。从45度到90度,绘图都很好,然后在90度之后又坏了。

speed_x1 = 80 - 55 * cos((PI / 180) * (speed * 1.8))
speed_y1 = 60 - 55 * sin((PI / 180) * (speed * 1.8))

(我希望速度最大为 100,因此速度 * 1.8 为 1.8 度/公里/小时)

如果能帮助解决我的问题,我将不胜感激。谢谢:)

 void ST7735_DrawLine(short x1, short y1, short x2, short y2, unsigned short color) {
// unsigned char hi = color >> 8, lo = color;
//int x=x1;
//int y=y1;

int dy = y2 - y1;
int dx = x2 - x1;
double m = dy / dx;
double c = y1 - m * x1;
if ((x1 >= _width) || (y1 >= _height) || (x2 >= _width) || (y2 >= _height) ) return;
setAddrWindow(x1, y1, x1 + x2 - 1, y2);
while(x1 <= x2)
{
if (m <= 1)
{
x1 = x1 + 1;
y1 = m * x1 + c;
ST7735_DrawPixel(x1,y1,color);
}
else
{
y1 = y1 + 1;
x1 = (y1 - c) / m;
ST7735_DrawPixel(x1,y1,color);
}
}
}

void ST7735_DrawPixel(short x, short y, unsigned short color) {
if ((x < 0) || (x >= _width) || (y < 0) || (y >= _height))
return;
setAddrWindow(x,y,x+1,y+1);
pushColor(color);
}

最佳答案

类型转换问题。当 dy/dx 小于 1 时,M 结果为 0。将它们类型转换为 float 以获得 float 结果。

关于c 绘图函数无法正确绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30430618/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com