Codebase list node-d3-shape / debian/1.2.0-1 src / symbol / square.js
debian/1.2.0-1

Tree @debian/1.2.0-1 (Download .tar.gz)

square.js @debian/1.2.0-1raw · history · blame

1
2
3
4
5
6
7
export default {
  draw: function(context, size) {
    var w = Math.sqrt(size),
        x = -w / 2;
    context.rect(x, x, w, w);
  }
};