blob: 56ba125508b2cb8657436b3e5151d0c8f0e4778b [file] [log] [blame]
/* global createTypedArray, poolFactory */
/* exported pointPool */
var pointPool = (function () {
function create() {
return createTypedArray('float32', 2);
}
return poolFactory(8, create);
}());