1
0
Fork 0

feat: Updated rendertest

This commit is contained in:
Joost De Cock 2021-12-24 13:28:34 +01:00
parent 4c5f5688b4
commit e70d6abe92
11 changed files with 272 additions and 133 deletions

View file

@ -4,40 +4,44 @@ export default function (part) {
let y = store.get('y')
let w = store.get('w')
let snips = {
logo: 25,
const snips = {
logo: 75,
notch: 15,
bnotch: 15,
button: 15,
buttonhole: 15,
buttonhole: 25,
"buttonhole-start": 15,
"buttonhole-end": 25,
"snap-socket": 25,
"snap-stud": 15,
}
y += 10
points.tl = new Point(0, y)
points.tr = new Point(w, y)
paths.texts = new Path().move(points.tl).line(points.tr).attr('data-text', 'snippets')
y += 20
points.snippets = new Point(0,y)
.attr('data-text', 'Snippets')
.attr('data-text-class', 'text-lg bold')
y += 10
points['sl1'] = new Point(w * 0.25, y)
points['sl2'] = new Point(w * 0.5, y)
points['sl3'] = new Point(w * 0.75, y)
points['sl1']
.attr('data-text', 'data-scale: 1\ndata-rotate: 0')
.attr('data-text-class', 'center text-sm')
.attr('data-text-lineheight', 5)
.attr('data-text-class', 'center text')
.attr('data-text-lineheight', 7)
points['sl2']
.attr('data-text', 'data-scale: 1.25\ndata-rotate: 0')
.attr('data-text-class', 'center text-sm')
.attr('data-text-lineheight', 5)
.attr('data-text-class', 'center text')
.attr('data-text-lineheight', 7)
points['sl3']
.attr('data-text', 'data-scale: 0.75\ndata-rotate: 90')
.attr('data-text-class', 'center text-sm')
.attr('data-text-lineheight', 5)
.attr('data-text-class', 'center text')
.attr('data-text-lineheight', 7)
y += 55
for (let i in snips) {
points['snt' + i] = new Point(0, y)
points['snt' + i].attr('data-text', i)
points['sn1' + i] = new Point(w * 0.25, y)
points['sn2' + i] = new Point(w * 0.5, y)
points['sn3' + i] = new Point(w * 0.75, y)
points['sn1' + i] = new Point(w * 0.3, y)
points['sn2' + i] = new Point(w * 0.55, y)
points['sn3' + i] = new Point(w * 0.8, y)
snippets['sn1' + i] = new Snippet(i, points['sn1' + i])
snippets['sn2' + i] = new Snippet(i, points['sn2' + i])
snippets['sn2' + i].attr('data-scale', 1.25)