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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
chicken Jr.
April 18, 2018
Programming
120
0
Share
Javaユーザに知ってほしいProcessing入門
Java Doでしょう #08で発表した資料です。
https://javado.connpass.com/event/47668/
chicken Jr.
April 18, 2018
More Decks by chicken Jr.
See All by chicken Jr.
Android15のためのEdge-to-edge対応
chickenjr_mi
2
1.8k
JetpackCompose移行、はじめました
chickenjr_mi
0
590
はじめてのKotlin Multiplatform
chickenjr_mi
0
720
AndroidエンジニアがDroidKaigiに初参加した話
chickenjr_mi
0
250
Spring Boot × Kotlinを試してみた
chickenjr_mi
0
380
ぬいぐるみと対話するために 音声認識APIを試してみた
chickenjr_mi
3
700
Other Decks in Programming
See All in Programming
Lessons from Spec-Driven Development
simas
PRO
0
110
oxlintはeslint/typescript-eslintを置き換えられるのか
shomafujita
2
300
Make SRE Operations Easier with Azure SRE Agent
kkamegawa
0
3k
関係性から理解する"同一性"の型用語たち
pvcresin
2
630
技術記事、AIに書かせるか、自分で書くか? 〜それでも私が自分の手で書く理由〜 / #QiitaConference
jnchito
2
1.2k
密結合なバックエンドから TypeScript のコードを生成する
kemuridama
1
670
次世代リンターで探る、tsgo 時代における型認識カスタムルールの現実解
ytakahashii
3
1.4k
DynamoDBには集計系のクエリがないけどなんとかしたい
musan
1
120
Inspired By RubyKaigi (EN)
atzzcokek
0
500
Spec-Driven Development with AI-Agents: From High-Level Requirements to Working Software
antonarhipov
2
430
生成AI時代にこそ効くGo | Why Go Works in the Age of Generative AI
mom0tomo
8
3.1k
Stage 3 Decorators でできること / できないこと / TSKaigi 2026
susisu
1
1.5k
Featured
See All Featured
Music & Morning Musume
bryan
47
7.2k
Learning to Love Humans: Emotional Interface Design
aarron
275
41k
Taking LLMs out of the black box: A practical guide to human-in-the-loop distillation
inesmontani
PRO
3
2.2k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
12
1.2k
Build The Right Thing And Hit Your Dates
maggiecrowley
39
3.2k
Balancing Empowerment & Direction
lara
6
1.1k
Building a Scalable Design System with Sketch
lauravandoore
463
34k
Winning Ecommerce Organic Search in an AI Era - #searchnstuff2025
aleyda
1
2k
[RailsConf 2023] Rails as a piece of cake
palkan
59
6.6k
Scaling GitHub
holman
464
140k
Un-Boring Meetings
codingconduct
0
300
Navigating Weather and Climate Data
rabernat
0
210
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