포인트 등 추가 안됨
max count 정해두고 해야
typed array 이 정적이라서
Float32Array
The Float32Array typed array represents an array of 32-bit floating point numbers (corresponding to the C float data type) in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array

THREE.js dynamically add points to a Points geometry does not render
Here's a fiddle with your first setup installed: https://jsfiddle.net/87wg5z27/236/ var scene, renderer, camera; var cube; var controls; init(); animate(); function init() { renderer = new THREE.WebGLRenderer( {antialias:true} ); var width = window.innerWidth; var height = window.innerHeight; renderer.setSize (width, height); document.body.appendChild (renderer.domElement); scene = new THREE.Scene(); camera = new THREE.PerspectiveCamera (45,
https://stackoverflow.com/questions/41177425/three-js-dynamically-add-points-to-a-points-geometry-does-not-render
