Source: scene/scene_analyser.js

/**
 * Analyses a scene and returns the placement of its objects in the camera's view
 * @param {THREE.Scene} scene
 */

const analyse = function( scene )
{
    return {}
}

export default analyse