-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcube.js
59 lines (50 loc) · 2.04 KB
/
cube.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
var width = 300
var height = width
draw = SVG('cube')
draw.size(width*4, height*3)
// The six faces, arranged in a cube net
drawFace(120, '+', 0, 1, 90)
drawFace(0, '+', 1, 1, 0)
drawFace(120, '-', 2, 1, 270)
drawFace(0, '-', 3, 1, 0)
drawFace(240, '+', 1, 0, 270)
drawFace(240, '-', 2, 2, 180)
// Draw one face
function drawFace(hue, signText, x, y, rot) {
function m(elt) { // move and rotate
return elt.translate(x*width, y*height).rotate(rot, width/2, height/2)
}
function c(elt) { // clip to square
return elt.clipWith(draw.rect(width, height))
}
thisFace = 'hsl(' + hue + ', 100%, 50%)'
otherFace = 'hsl(' + hue+120 + ', 100%, 50%)'
gold = 'gold'
silver = 'silver'
var gradient = draw.gradient('linear', function(stop) {
stop.at(0, 'hsl(' + hue + ', 100%, 80%)')
stop.at(1, '#FFFFFF')
})
m(draw.rect(width, height).fill(gradient))
// Draw 4 on-color edges
m(c(draw.line(0, 0, width, height).stroke({width: 10, color: thisFace})))
m(c(draw.line(0, 0, width, 0).stroke({width: 10, color: thisFace})))
m(c(draw.line(0, height, width, height).stroke({width: 10, color: thisFace})))
m(c(draw.line(0, height, width, 0).stroke({width: 10, color: thisFace})))
// Draw 2 off-color edges
m(c(draw.line(0, 0, 0, height).stroke({width: 10, color: otherFace})))
m(c(draw.line(width, 0, width, height).stroke({width: 10, color: otherFace})))
// Draw quarter-circle at each corner
diameter = width/2
m(c(draw.circle(diameter).center(0, 0).fill(gold)))
m(c(draw.circle(diameter).center(width, 0).fill(silver)))
m(c(draw.circle(diameter).center(0, height).fill(silver)))
m(c(draw.circle(diameter).center(width, height).fill(gold)))
// Draw + or - on each corner
margin = width/10
fontSize = width/10
m(draw.text(signText).font({size: fontSize}).center(0+margin, 0+margin))
m(draw.text(signText).font({size: fontSize}).center(width-margin, 0+margin))
m(draw.text(signText).font({size: fontSize}).center(0+margin, height-margin))
m(draw.text(signText).font({size: fontSize}).center(width-margin, height-margin))
}