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
120
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
2
1.7k
JetpackCompose移行、はじめました
chickenjr_mi
0
570
はじめてのKotlin Multiplatform
chickenjr_mi
0
550
AndroidエンジニアがDroidKaigiに初参加した話
chickenjr_mi
0
240
Spring Boot × Kotlinを試してみた
chickenjr_mi
0
360
ぬいぐるみと対話するために 音声認識APIを試してみた
chickenjr_mi
3
660
Other Decks in Programming
See All in Programming
Python’s True Superpower
hynek
0
190
AI時代の認知負荷との向き合い方
optfit
0
180
CSC307 Lecture 09
javiergs
PRO
1
850
ぼくの開発環境2026
yuzneri
1
290
kintone + ローカルLLM = ?
akit37
0
120
AIフル活用時代だからこそ学んでおきたい働き方の心得
shinoyu
0
150
Scaling & Coordinating AI Agents for Development - Tamir Dresher
tamirdresher
0
110
モジュラモノリスにおける境界をGoのinternalパッケージで守る
magavel
0
350
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
230
atmaCup #23でAIコーディングを活用した話
ml_bear
4
680
今から始めるClaude Code超入門
448jp
8
9.5k
15年目のiOSアプリを1から作り直す技術
teakun
0
500
Featured
See All Featured
Evolving SEO for Evolving Search Engines
ryanjones
0
140
A better future with KSS
kneath
240
18k
A Guide to Academic Writing Using Generative AI - A Workshop
ks91
PRO
0
220
New Earth Scene 8
popppiees
1
1.6k
Joys of Absence: A Defence of Solitary Play
codingconduct
1
300
VelocityConf: Rendering Performance Case Studies
addyosmani
333
24k
Odyssey Design
rkendrick25
PRO
2
520
How to build a perfect <img>
jonoalderson
1
5.2k
What Being in a Rock Band Can Teach Us About Real World SEO
427marketing
0
180
Have SEOs Ruined the Internet? - User Awareness of SEO in 2025
akashhashmi
0
280
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
10k
Future Trends and Review - Lecture 12 - Web Technologies (1019888BNR)
signer
PRO
0
3.2k
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