-
Notifications
You must be signed in to change notification settings - Fork 0
/
background.js
96 lines (82 loc) · 2.43 KB
/
background.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// P_2_3_3_01
//
// Generative Gestaltung, ISBN: 978-3-87439-759-9
// First Edition, Hermann Schmidt, Mainz, 2009
// Hartmut Bohnacker, Benedikt Gross, Julia Laub, Claudius Lazzeroni
// Copyright 2009 Hartmut Bohnacker, Benedikt Gross, Julia Laub, Claudius Lazzeroni
//
// http://www.generative-gestaltung.de
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* draw tool. shows how to draw with dynamic elements.
*
* MOUSE
* drag : draw with text
*
* KEYS
* del, backspace : clear screen
* arrow up : angle distortion +
* arrow down : angle distortion -
* s : save png
*/
var x = 0,
y = 0;
var stepSize = 5.0;
var letters =
"What we were never able to tell our parents.";
var fontSizeMin = 3;
var angleDistortion = 0.0;
var counter = 0;
function setup() {
// use full screen size
createCanvas(windowWidth, windowHeight);
background(255);
smooth();
cursor(CROSS);
x = mouseX;
y = mouseY;
textAlign(LEFT);
fill(188, 188, 188);
}
function draw() {
if (mouseOver) {
var d = dist(x, y, mouseX, mouseY);
textFont("Courier New");
textSize(fontSizeMin + d / 2);
var newLetter = letters.charAt(counter);
stepSize = textWidth(newLetter);
if (d > stepSize) {
var angle = atan2(mouseY - y, mouseX - x);
push();
translate(x, y);
rotate(angle + random(angleDistortion));
text(newLetter, 0, 0);
pop();
counter++;
if (counter > letters.length - 1) counter = 0;
x = x + cos(angle) * stepSize;
y = y + sin(angle) * stepSize;
}
}
}
function mouseOver() {
x = mouseX;
y = mouseY;
}
function keyTyped() {
if (key == "s" || key == "S") save("P_2_3_3_01.png");
}
function keyPressed() {
// angleDistortion ctrls arrowkeys up/down
if (keyCode == DELETE || keyCode == BACKSPACE) background(255);
if (keyCode == UP_ARROW) angleDistortion += 0.1;
if (keyCode == DOWN_ARROW) angleDistortion -= 0.1;
}