Divide an area by the percentage.
npm i --save area-divide
var areaDivide = require('area-divide');
var data = [0.4, 0.3, 0.3];
areaDivide(100, 50, data);
// will get array like below:
[{
x1: 0,
y1: 0,
x2: 40,
y2: 50,
}, {
x1: 40,
y1: 0,
x2: 100,
y2: 25,
}, {
x1: 40,
y1: 25,
x2: 100,
y2: 50,
}]
ISC@ProtoTeam.