Repository Details
Shared by


HelloGitHub Rating
0 ratings
Free•LGPL-2.1
Claim
Discuss
Collect
Share
22.9k
Stars
No
Chinese
JavaScript
Language
Yes
Active
687
Contributors
417
Issues
Yes
Organization
2.0.5
Latest
4k
Forks
LGPL-2.1
License
More

一个 JavaScript 创意编程程式库,可以用来绘图、实现艺术创意等。使用该库只需要会 JS 代码就可以用它画出许多有趣的东西,文档齐全能够快速上手,还有在线编辑器。[官网](https://p5js.org/zh-Hans/),示例代码:
```javascript
function setup() {
createCanvas(640, 480);
}
function draw() {
if (mouseIsPressed) {
fill(0);
} else {
fill(255);
}
ellipse(mouseX, mouseY, 80, 80);
}
```
Included in:
Vol.46
Comments
Rating:
No comments yet