├── Skeleton_BEA.json ├── README.md ├── LICENSE ├── guide1.html └── guide2.html /Skeleton_BEA.json: -------------------------------------------------------------------------------- 1 | [[6,7],[5,6],[4,5],[12,13],[11,12],[14,15],[11,14],[10,11],[9,10],[8,9],[4,8],[20,21],[19,20],[22,23],[19,22],[18,19],[17,18],[16,17],[4,16],[3,4],[2,3],[1,2],[0,1],[27,28],[26,27],[25,26],[24,25],[0,24],[32,33],[31,32],[30,31],[29,30],[0,29]] -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # d3-mocap-demo 2 | 3 | Supplementary source codes and sample data files for the tutorial on visualizing motion capture data with D3.js 4 | 5 | * Demo 1: [http://omid.al/d3-mocap-demo/guide1.html](http://omid.al/d3-mocap-demo/guide1.html) 6 | * Demo 2: [http://omid.al/d3-mocap-demo/guide2.html](http://omid.al/d3-mocap-demo/guide2.html) 7 | 8 | You can find the tutorial [here](http://omid.al/posts/2016-08-23-MocapVis-D3.html). 9 | 10 | ### Feedback, Bugs, and Questions 11 | For any questions, feedback, and bug reports, please use the [Github Issues](https://github.com/omimo/d3-mocap-demo/issues). 12 | 13 | ### Credits 14 | Created by [Omid Alemi](http://omid.al) 15 | 16 | ### License 17 | This code is available under the [MIT license](http://opensource.org/licenses/MIT). 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Omid Alemi 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /guide1.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | Visualizing Motion Capture Data with D3.js 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 102 | 103 | -------------------------------------------------------------------------------- /guide2.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | Visualizing Motion Capture Data with D3.js 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 | 122 | 123 | --------------------------------------------------------------------------------