File size: 166 Bytes
bc20498
 
 
 
 
 
1
2
3
4
5
6
7
export default function(node) {
  node.x0 = Math.round(node.x0);
  node.y0 = Math.round(node.y0);
  node.x1 = Math.round(node.x1);
  node.y1 = Math.round(node.y1);
}