-
[https://github.com/ethz-adrl/control-toolbox] Control Toolbox - An Open-Source C++ Library for Robotics, Optimal and Model Predictive Control
-
[https://github.com/davepagurek/DynamicKelvinlets] Dynamic Kelvinets to add secondary animation
-
[http://domedb.perception.cs.cmu.edu/monototalcapture.html] Yassar's group's monocular mocap
-
[https://arxiv.org/abs/1812.11103v3] Learning to Walk via Deep Reinforcement Learning
-
[https://arxiv.org/abs/1810.02363v4] Recurrent Transition Networks for Character Locomotion
-
[http://www.andreasaristidou.com/publications/papers/CUEDF-INFENG,%20TR-632.pdf] FABRIK
-
[https://github.com/dgriff777/a3c_continuous] A3 Continuous Character Controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <assert.h> | |
#include <vector> | |
template<class T> | |
struct Func{}; | |
// std::func replacement without dynamic memory allocation (captures are limited to 48 bytes) | |
// this could be extended to support captures >48 bytes... of course, with a bit more of logic | |
// and some state. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script, executed at the root of a git repository, deletes traces of every old file in this repository, index + blob on all branches | |
# It can take 10-30 minutes to run and will print regular warning stating than some references are unchanged | |
# time ./clear_git_repositor.bash >cleaning.log | |
# We need several passes to clean files renamed multiple times (git log --find-renames prevents its deletion for each renaming) | |
# MAXIMUM_PASSES should be more than the maximum number of renamings/movings for any file, if not then we might keep some traces of former files | |
MAXIMUM_PASSES=10 # Maximum number of passes |
conda create -n otio-py38 python=3.8
conda activate otio-py38
conda install -c anaconda cmake
#conda install -c anaconda jinja2 # for USD
python -m pip install PySide2 PyOpenGL
#conda install -c rdonnelly vs2019_win-64 # developer command prompt for VS2019
#Build your projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Scripts, variables, and constants here are visible to all modes | |
let fake_phi = 0 | |
def Render(p, ϕ, height, horizon, scale_height, distance, screen_width, screen_height): | |
// precalculate viewing angle parameters | |
const sinphi = sin(ϕ + fake_phi) | |
const cosphi = cos(ϕ + fake_phi) | |
fake_phi += 0.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let im4_items = [] | |
let im4_order = 0 | |
let im4_found_index = 0 | |
let im4_search_label = "" | |
let im4_cursor_x = 16 | |
let im4_selection = 0 | |
let im4_iteration = 0 | |
let im4_current_font = ∅ | |
const im4_button_kind = 0 |
virtualenv --python=/usr/local/bin/python3 usd-py3env
cp /Library/Frameworks/Python.framework/Versions/3.7/Python usd-py3env/lib/libpython3.7.dylib
source usd-py3env/bin/activate
pip install PyOpenGL
pip install PySide2
cd usd-dev;git pull
cd ../usd-py3env
python ../usd-dev/build_scripts/build_usd.py -v --generator=Xcode --no-tests --no-examples --no-tutorials --tools --no-docs --usdview --openimageio --alembic --no-hdf5 --draco --materialx --ptex --opencolorio --embree .
...
Algebraic Representations for Volumetric Frame Fields https://siggraph2020.hubb.me/schedule-builder/sessions/715917 Q&A: https://siggraph2020.hubb.me/schedule-builder/sessions/713389
David Palmer, Massachusetts Institute of Technology (MIT) David Bommes, University of Bern Justin Solomon, Massachusetts Institute of Technology (MIT)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Rendezvous protocol | |
RENDEZVOUS | |
Admin | |
ShowAdmins | |
[name, email, [tags], show] | |
Contributors | |
[name, email, [tags], [shows]] |