THREE
Example
Geometry
Box
Cylinder
Cone
Circle
Dodecahedron
Icosahedron
Lathe
Octahedron
Plane
Ring
Sphere
Tetrahedron
TextGeometry
Torus
TorusKnotBuffer
Camera
참고자료
Memory Leak
Mesh 의 객체와 배열을 null 혹은 [] 로 초기화 시켜줘야 한다.
In webGL Renderer, after removing a mesh with
scene.remove(mesh);
you can deallocate the memory with
renderer.deallocateObject(mesh);
You can deallocate textures with
renderer.deallocateTexture(texture);