C 语言

关注公众号 jb51net

关闭
首页 > 软件编程 > C 语言 > C语言绘制时钟

C语言基于EasyX绘制时钟

作者:云淡风轻ing

这篇文章主要为大家详细介绍了C语言基于EasyX绘制时钟,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了C语言基于EasyX绘制时钟的具体代码,供大家参考,具体内容如下

函数说明:

void line(
    int x1,
    int y1,
    int x2,
    int y2
);

参数

x1
直线的起始点的 x 坐标。

y1
直线的起始点的 y 坐标。

x2
直线的终止点的 x 坐标。

y2
直线的终止点的 y 坐标。

文件素材

源代码

#include <graphics.h>
#include <conio.h>
#include <math.h>
#define PI 3.1415926
int main()
{
    int high=500;
    int width=500;
    initgraph(width,high);        
    IMAGE img;                    
    loadimage(&img,"timg.jpg");        //加载图片
    putimage(0,0,&img);                //显示图片
    SYSTEMTIME ti;
    float angle_s = 0;                //秒针偏转角度
    float angle_m = 0;                //分针偏转角度
    float angle_h = 0;                //时针偏转角度
    BeginBatchDraw();
    outtextxy(width/2-30,10,"我的时钟");    //输出文字
    while(1)
    {
        GetLocalTime(&ti);                    //获得系统时间
        //根据系统时间获取时针、分针、秒针偏转角度
        angle_s = ti.wSecond*2*PI/60;        
        angle_m = ti.wMinute*2*PI/60;
        angle_h = ti.wHour*2*PI/12;
        //绘制秒针
        setcolor(RED);
        setlinestyle(PS_SOLID,2);
        line(width/2,high/2,width/2+120*sin(angle_s),high/2-120*cos(angle_s));
        setcolor(GREEN);
        //绘制分针
        setlinestyle(PS_SOLID,3);
        line(width/2,high/2,width/2+80*sin(angle_m),high/2-80*cos(angle_m));
        setcolor(BLACK);
        //绘制时针
        setlinestyle(PS_SOLID,4);
        line(width/2,high/2,width/2+50*sin(angle_h),high/2-50*cos(angle_h));
        FlushBatchDraw();
        //Sleep(50);
        //清除前一帧的绘图
        setcolor(WHITE);
        line(width/2,high/2,width/2+120*sin(angle_s),high/2-120*cos(angle_s));
        line(width/2,high/2,width/2+80*sin(angle_m),high/2-80*cos(angle_m));
        line(width/2,high/2,width/2+50*sin(angle_h),high/2-50*cos(angle_h));

    }
    EndBatchDraw();
    getch();
    closegraph();
    return 0;
}

效果:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文