Skip to content

Instantly share code, notes, and snippets.

@starlightme
starlightme / gist:23546a50edcf542d5e8c
Created March 6, 2015 13:21
Processing绘制sin函数
float x=0.0;
float y=200.0;
void setup()
{
size(400,400);
background(0);
}
void draw()
{
ellipse(x,y,10,10);
@starlightme
starlightme / Clock
Last active August 29, 2015 14:09
Java时钟类
package demo;
class Clock{
int hour,minute,second;
//构造函数
public Clock(){
this.hour=0;
this.minute=0;
this.second=0;
}
//设定时间