Got a single frame freeze/unfreeze mode working in charts. Now I need to calculate a better initial state. Done.
Starting to look at extruding chart components. Got some working, looking at different examples. Will try this next: http://threejs.org/examples/webgl_geometry_shapes.html
And on a side note, it looks like the GPU can be used for simulaiton: http://threejs.org/examples/#webgl_gpgpu_birds
cleaned up database views – _view_project_detailed_data
working on scripts to add parent project users to children… (2 hours)
INSERT INTO _projects_portfolio_mgrs
(SELECT sub_project_id, login FROM _projects_portfolio_mgrs ppa
LEFT JOIN _project_sub_projects psp
ON psp.project_id = ppa.project_id WHERE (sub_project_id, login) NOT IN (SELECT * FROM (_projects_portfolio_mgrs)))
INSERT INTO _projects_portfolio_admins
(SELECT sub_project_id, login FROM _projects_portfolio_admins ppa
LEFT JOIN _project_sub_projects psp
ON psp.project_id = ppa.project_id WHERE (sub_project_id, login) NOT IN (SELECT * FROM (_projects_portfolio_admins)))