Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Javaユーザに知ってほしいProcessing入門
Search
chicken Jr.
April 18, 2018
Programming
0
89
Javaユーザに知ってほしいProcessing入門
Java Doでしょう #08で発表した資料です。
https://javado.connpass.com/event/47668/
chicken Jr.
April 18, 2018
Tweet
Share
More Decks by chicken Jr.
See All by chicken Jr.
JetpackCompose移行、はじめました
chickenjr_mi
0
140
はじめてのKotlin Multiplatform
chickenjr_mi
0
60
AndroidエンジニアがDroidKaigiに初参加した話
chickenjr_mi
0
110
Spring Boot × Kotlinを試してみた
chickenjr_mi
0
310
ぬいぐるみと対話するために 音声認識APIを試してみた
chickenjr_mi
3
520
Other Decks in Programming
See All in Programming
コードレビューと私の過去と未来
jxmtst
0
120
Micro Frontends Unmasked: Opportunities, Challenges, Alternatives
manfredsteyer
PRO
0
250
Flutterアプリを生成AIで生成する勘所
rizumita
0
240
ポケモンで考えるコミュニケーション / Communication Lessons from Pokémon
mackey0225
3
130
Go製CLIツールGatling Commanderによる負荷試験実施の自動化
okmtz
3
630
Assembling the Future: crafting the missing pieces of the Ruby on Wasm puzzle
skryukov
0
120
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
5
210
Compose Multiplatform과 Ktor로 플랫폼의 경계를 넘어보자
kwakeuijin
0
200
Rails 8 Frontend: 10 commandments & 7 deadly sins in 2025
yshmarov
1
570
Cloud Adoption Frameworkにみる組織とクラウド導入戦略(縮小版)
tomokusaba
1
120
CSC509 Lecture 03
javiergs
PRO
0
120
2024-10-02 dev2next - Application Observability like you've never heard before
jonatan_ivanov
0
120
Featured
See All Featured
Six Lessons from altMBA
skipperchong
26
3.4k
5 minutes of I Can Smell Your CMS
philhawksworth
202
19k
Designing for humans not robots
tammielis
248
25k
VelocityConf: Rendering Performance Case Studies
addyosmani
323
23k
10 Git Anti Patterns You Should be Aware of
lemiorhan
653
59k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
166
48k
Bash Introduction
62gerente
608
210k
The MySQL Ecosystem @ GitHub 2015
samlambert
250
12k
Adopting Sorbet at Scale
ufuk
73
8.9k
Learning to Love Humans: Emotional Interface Design
aarron
271
40k
A Philosophy of Restraint
colly
202
16k
Web Components: a chance to create the future
zenorocha
309
42k
Transcript
None
None
None
void draw() { println(“Hello World!!"); }
None
void draw() { println(“Hello World!!"); }
void setup() { // セットアップ } void draw() {
// 描画処理 }
void setup() { noLoop(); } void draw() { println(“Hello
World!!"); }
void setup() { noLoop(); } void draw() { println(“Hello
World!!"); }
None
void setup() { size(800, 400); } void draw() {
textSize(100); fill(0); text("Hello World", 0, height/2); }
None
void setup() { size(800, 400); } void draw() {
textSize(100); fill(0); text("Hello World", 0, height/2); rect(0, 200, width, 10); }
None
int r = 0; int g = 0; int
b = 0; void setup() { size(300,300); } void draw() { background(r, g, b); fill(255); ellipse(mouseX, mouseY, 20, 20); } void mouseClicked(){ r = 0; g = mouseX; b = mouseY; }
None
PImage img; void setup() { size(400, 200); img =
loadImage("icon1007.png"); } void draw() { tint(0, 153, 204); // Tint blue image(img, 0, 0, 200, 200); noTint(); image(img, 200, 0, 200, 200); //filter(THRESHOLD); //filter(INVERT); }
None
PImage img; void setup() { size(400, 200); img =
loadImage("icon1007.png"); } void draw() { tint(0, 153, 204); // Tint blue image(img, 0, 0, 200, 200); noTint(); image(img, 200, 0, 200, 200); filter(THRESHOLD); //filter(INVERT); }
None
PImage img; void setup() { size(400, 200); img =
loadImage("icon1007.png"); } void draw() { //tint(0, 153, 204); // Tint blue image(img, 0, 0, 200, 200); //noTint(); image(img, 200, 0, 200, 200); //filter(THRESHOLD); filter(INVERT); }
None