aboutsummaryrefslogtreecommitdiffstats
path: root/bench/tests/10000-transform.js
blob: 0fcc16251fa107ac7077746ba3adfb98d01c232f (plain)
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
SVG.bench.describe('Transform 1000000 rects', function(bench) {
  let parameters = {
    translate: [20, 30],
    origin: [100, 100],
    rotate: 25,
    skew: [10, 30],
    scale: 0.5
  }
  
  let matrixLike = {a:2, b:3, c:1, d:2, e:49, f:100}
  let matrix = new SVG.Matrix(matrixLike)
  
  let worker = new SVG.Matrix()
  bench.test('with parameters', function() {
    for (var i = 0; i < 1000000; i++)
      worker.transform(parameters)
  })
  
  worker = new SVG.Matrix()
  bench.test('with matrix like', function() {
    for (var i = 0; i < 1000000; i++) {
      worker.transform(matrixLike)
    }
  })
  
  worker = new SVG.Matrix()
  bench.test('with SVG.Matrix', function() {
    for (var i = 0; i < 1000000; i++)
      worker.transform(matrix)
  })
})