Processing实现Google新图标

本文介绍了如何使用Processing编程语言来实现Google的新图标。作者通过分享代码展示了具体实现过程。
摘要由CSDN通过智能技术生成

看到新的Google图标,感觉很好玩,使用Processing实现了一下。先看一下Google的图标:


以下是实现的代码:

PGraphics path;
float vec;
float x, y;
float radius;
float dotRad;
float cx, cy;
float bottom, top;

void setup() {
    size(700, 200);
    background(255);
    smooth();
    path = createGraphics(width, height);
    radius = 0.4 * height;
    dotRad = 4;
    x = 0;
    cx = width / 2;
    cy = height / 2;
    bottom = cy + radius;
    top = cy - radius;
    y = getY(x);
    vec = 1;
}

void draw() {
    x += vec;
    if (x >= width || x <= 0)
        vec *= -1;
    float calx, caly;
    calx = getX(x);
    caly = getY(x);
    background(255);
    text("Click mouse to clear the path.", 5, 12);
    ellipse(cx, cy, 2*radius, 2*radius);
    line(0, bottom, width, bottom);
    stro
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值