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
1
1.3k
JetpackCompose移行、はじめました
chickenjr_mi
0
490
はじめてのKotlin Multiplatform
chickenjr_mi
0
340
AndroidエンジニアがDroidKaigiに初参加した話
chickenjr_mi
0
200
Spring Boot × Kotlinを試してみた
chickenjr_mi
0
350
ぬいぐるみと対話するために 音声認識APIを試してみた
chickenjr_mi
3
590
Other Decks in Programming
See All in Programming
AI Agent 時代のソフトウェア開発を支える AWS Cloud Development Kit (CDK)
konokenj
6
1.1k
新世界の理解
koriym
0
130
MySQL9でベクトルカラム登場!PHP×AWSでのAI/類似検索はこう変わる
suguruooki
1
280
Claude Code と OpenAI o3 で メタデータ情報を作る
laket
0
110
構文解析器入門
ydah
7
2k
Claude Code派?Gemini CLI派? みんなで比較LT会!_20250716
junholee
1
800
「次に何を学べばいいか分からない」あなたへ──若手エンジニアのための学習地図
panda_program
3
710
中級グラフィックス入門~効率的なメッシュレット描画~
projectasura
4
2.4k
DMMを支える決済基盤の技術的負債にどう立ち向かうか / Addressing Technical Debt in Payment Infrastructure
yoshiyoshifujii
5
740
バイブスあるコーディングで ~PHP~ 便利ツールをつくるプラクティス
uzulla
1
320
JetBrainsのAI機能の紹介 #jjug
yusuke
0
180
#QiitaBash TDDで(自分の)開発がどう変わったか
ryosukedtomita
1
350
Featured
See All Featured
Unsuck your backbone
ammeep
671
58k
Designing for Performance
lara
610
69k
The Pragmatic Product Professional
lauravandoore
36
6.8k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
34
6k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.4k
A designer walks into a library…
pauljervisheath
207
24k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
229
22k
Statistics for Hackers
jakevdp
799
220k
Site-Speed That Sticks
csswizardry
10
750
Gamification - CAS2011
davidbonilla
81
5.4k
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