在actionscript中绘制像UI一样的测量刻度

发布于 2024-11-09 00:54:05 字数 151 浏览 0 评论 0原文

您好,如何用数字和刻度间隔绘制一条线,就像在测量刻度中一样。像这样的图像 scale

Hi how to draw a line with numbers and the tick intervals as in a measuring scale. some thing like this image scale

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒中人 2024-11-16 00:54:05

这应该会给你一个好的开始:

graphics.lineStyle(1,0);

for(var i:int=0; i<10; i++){
    //Draw the big strokes
    graphics.moveTo(i*50, 0);
    graphics.lineTo(i*50, 40);
    //Draw the smaller ones
    for(var u:int=1+i*10; u<10+i*10; u++){
        var smallHeight:int = 15;
        if (u%5==0) smallHeight = 25;//Make the centered one higher
        graphics.moveTo(u*5, 40-smallHeight);
        graphics.lineTo(u*5, 40);
    }
 }

This should give you a good start:

graphics.lineStyle(1,0);

for(var i:int=0; i<10; i++){
    //Draw the big strokes
    graphics.moveTo(i*50, 0);
    graphics.lineTo(i*50, 40);
    //Draw the smaller ones
    for(var u:int=1+i*10; u<10+i*10; u++){
        var smallHeight:int = 15;
        if (u%5==0) smallHeight = 25;//Make the centered one higher
        graphics.moveTo(u*5, 40-smallHeight);
        graphics.lineTo(u*5, 40);
    }
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文