-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch.js
94 lines (86 loc) · 2.44 KB
/
sketch.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
function setup() {
canv = createCanvas(windowWidth,windowHeight-150);
canv.position(0,150);
thickness = 50;
color.r = 0;
color.g = 0;
color.b = 0;
strokeWeight(0);
$('#ran_r').change(() => {
color.r = $('#ran_r').val();
setColor();
});
$('#ran_g').change(() => {
color.g = $('#ran_g').val();
setColor();
});
$('#ran_b').change(() => {
color.b = $('#ran_b').val();
setColor();
});
$('#thick').change(() => {
thickness = Number.parseInt($('#thick').val());
$('#rect').attr('r', (mode === 1 ? thickness/2 : thickness/2));
});
$('#modes').change(() => {
mode = Number.parseInt($('#modes').val());
$('#rect').attr('r', (mode === 1 ? thickness/2 : thickness/2));
});
color.r = $('#ran_r').val();
color.g = $('#ran_g').val();
color.b = $('#ran_b').val();
thickness = Number.parseInt($('#thick').val());
mode = Number.parseInt($('#modes').val());
$('#rect').attr('r', (mode === 1 ? thickness/2 : thickness/2));
setColor();
background(255);
}
function setColor() {
$('#rect').attr('style', 'fill:rgb('+color.r + ',' + color.g + ',' + color.b + ');stroke-width:3;stroke:rgb(0,0,0)')
}
let thickness;
let color = {};
let mode;
let canv;
let linexy = {};
function draw() {
if (mouseIsPressed) {
switch(mode){
case 0:
stroke(color.r, color.g, color.b);
fill(color.r, color.g, color.b);
strokeWeight(0);
ellipse(mouseX, mouseY, thickness, thickness);
break;
case 1:
if(!linexy.start_x){
linexy.start_x = mouseX;
linexy.start_y = mouseY;
}
break;
}
} else if (mode === 1) {
if (linexy.start_x) {
console.log(linexy);
// fill(color.r, color.g, color.b);
// stroke(255);
stroke(color.r, color.g, color.b);
strokeWeight(thickness);
line(linexy.start_x, linexy.start_y, mouseX, mouseY);
delete linexy.start_x;
delete linexy.start_y;
}
}
}
function keyPressed() {
switch(keyCode) {
case 83:
saveCanvas(canv, 'myCanvas', 'jpg');
break;
case 67:
background(255);
break;
default:
console.log(keyCode);
}
}