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
97
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.
Android15のためのEdge-to-edge対応
chickenjr_mi
0
1.1k
JetpackCompose移行、はじめました
chickenjr_mi
0
460
はじめてのKotlin Multiplatform
chickenjr_mi
0
330
AndroidエンジニアがDroidKaigiに初参加した話
chickenjr_mi
0
190
Spring Boot × Kotlinを試してみた
chickenjr_mi
0
340
ぬいぐるみと対話するために 音声認識APIを試してみた
chickenjr_mi
3
590
Other Decks in Programming
See All in Programming
AI コーディングエージェントの時代へ:JetBrains が描く開発の未来
masaruhr
1
200
新メンバーも今日から大活躍!SREが支えるスケールし続ける組織のオンボーディング
honmarkhunt
5
8.7k
Android 16KBページサイズ対応をはじめからていねいに
mine2424
0
440
Deep Dive into ~/.claude/projects
hiragram
14
14k
猫と暮らす Google Nest Cam生活🐈 / WebRTC with Google Nest Cam
yutailang0119
0
170
[SRE NEXT] 複雑なシステムにおけるUser Journey SLOの導入
yakenji
0
150
「App Intent」よくわからんけどすごい!
rinngo0302
1
110
テストから始めるAgentic Coding 〜Claude Codeと共に行うTDD〜 / Agentic Coding starts with testing
rkaga
15
5.6k
Google Agent Development Kit でLINE Botを作ってみた
ymd65536
2
260
#QiitaBash MCPのセキュリティ
ryosukedtomita
1
1.5k
ニーリーにおけるプロダクトエンジニア
nealle
0
950
ペアプロ × 生成AI 現場での実践と課題について / generative-ai-in-pair-programming
codmoninc
2
21k
Featured
See All Featured
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
8
340
Producing Creativity
orderedlist
PRO
346
40k
Optimising Largest Contentful Paint
csswizardry
37
3.3k
Building an army of robots
kneath
306
45k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Unsuck your backbone
ammeep
671
58k
Balancing Empowerment & Direction
lara
1
460
The Power of CSS Pseudo Elements
geoffreycrofte
77
5.9k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
60k
Designing for humans not robots
tammielis
253
25k
Why You Should Never Use an ORM
jnunemaker
PRO
58
9.5k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
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