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
570
AndroidエンジニアがDroidKaigiに初参加した話
chickenjr_mi
0
240
Spring Boot × Kotlinを試してみた
chickenjr_mi
0
360
ぬいぐるみと対話するために 音声認識APIを試してみた
chickenjr_mi
3
670
Other Decks in Programming
See All in Programming
コードレビューをしない選択 #でぃーぷらすトウキョウ
kajitack
3
890
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
430
CSC307 Lecture 13
javiergs
PRO
0
320
エンジニアの「手元の自動化」を加速するn8n 2026.02.27
symy2co
0
140
SourceGeneratorのマーカー属性問題について
htkym
0
180
15年目のiOSアプリを1から作り直す技術
teakun
1
620
Agentic AI: Evolution oder Revolution
mobilelarson
PRO
0
150
株式会社 Sun terras カンパニーデック
sunterras
0
2.1k
コーディングルールの鮮度を保ちたい / keep-fresh-go-internal-conventions
handlename
0
190
New in Go 1.26 Implementing go fix in product development
sunecosuri
0
420
Cyrius ーLinux非依存にコンテナをネイティブ実行する専用OSー
n4mlz
0
130
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
390
Featured
See All Featured
AI: The stuff that nobody shows you
jnunemaker
PRO
3
370
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
35
2.4k
What the history of the web can teach us about the future of AI
inesmontani
PRO
1
470
The Illustrated Children's Guide to Kubernetes
chrisshort
51
52k
A Modern Web Designer's Workflow
chriscoyier
698
190k
Making the Leap to Tech Lead
cromwellryan
135
9.8k
The Pragmatic Product Professional
lauravandoore
37
7.2k
The Illustrated Guide to Node.js - THAT Conference 2024
reverentgeek
1
300
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
380
The innovator’s Mindset - Leading Through an Era of Exponential Change - McGill University 2025
jdejongh
PRO
1
120
The Impact of AI in SEO - AI Overviews June 2024 Edition
aleyda
5
760
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.7k
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