├── data ├── body_gmm │ ├── cov_0.txt │ ├── cov_1.txt │ ├── cov_2.txt │ ├── cov_3.txt │ ├── cov_4.txt │ ├── cov_5.txt │ ├── cov_6.txt │ ├── cov_7.txt │ ├── mean_0.txt │ ├── mean_1.txt │ ├── mean_2.txt │ ├── mean_3.txt │ ├── mean_4.txt │ ├── mean_5.txt │ ├── mean_6.txt │ ├── mean_7.txt │ └── weight.txt ├── smpl_female │ ├── faces.txt │ ├── joints.txt │ ├── jregressor.txt │ ├── jshape_blend.txt │ ├── lbs_weights.txt │ ├── shape_blend.txt │ └── vertices.txt ├── smpl_male │ ├── faces.txt │ ├── joints.txt │ ├── jregressor.txt │ ├── jshape_blend.txt │ ├── lbs_weights.txt │ ├── shape_blend.txt │ └── vertices.txt ├── smplh_female │ ├── faces.txt │ ├── joints.txt │ ├── jregressor.txt │ ├── jshape_blend.txt │ ├── lbs_weights.txt │ ├── lhand_components.txt │ ├── lhand_mean.txt │ ├── rhand_components.txt │ ├── rhand_mean.txt │ ├── shape_blend.txt │ └── vertices.txt ├── smplh_male │ ├── faces.txt │ ├── joints.txt │ ├── jregressor.txt │ ├── jshape_blend.txt │ ├── lbs_weights.txt │ ├── lhand_components.txt │ ├── lhand_mean.txt │ ├── rhand_components.txt │ ├── rhand_mean.txt │ ├── shape_blend.txt │ └── vertices.txt ├── smplx_female │ ├── faces.txt │ ├── joints.txt │ ├── jregressor.txt │ ├── jshape_blend.txt │ ├── lbs_weights.txt │ ├── lhand_components.txt │ ├── lhand_mean.txt │ ├── rhand_components.txt │ ├── rhand_mean.txt │ ├── shape_blend.txt │ └── vertices.txt ├── smplx_male │ ├── faces.txt │ ├── joints.txt │ ├── jregressor.txt │ ├── jshape_blend.txt │ ├── lbs_weights.txt │ ├── lhand_components.txt │ ├── lhand_mean.txt │ ├── rhand_components.txt │ ├── rhand_mean.txt │ ├── shape_blend.txt │ └── vertices.txt └── smplx_neutral │ ├── faces.txt │ ├── joints.txt │ ├── jregressor.txt │ ├── jshape_blend.txt │ ├── lbs_weights.txt │ ├── lhand_components.txt │ ├── lhand_mean.txt │ ├── rhand_components.txt │ ├── rhand_mean.txt │ ├── shape_blend.txt │ └── vertices.txt ├── output └── test.obj ├── smplx ├── eigen.props ├── smplx.vcxproj ├── smplx.vcxproj.filters └── smplx.vcxproj.user ├── smplx_cpp.sln └── src ├── gmm.cpp ├── gmm.h ├── main.cpp ├── math_util.h ├── smpl.cpp └── smpl.h /data/body_gmm/cov_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/cov_0.txt -------------------------------------------------------------------------------- /data/body_gmm/cov_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/cov_1.txt -------------------------------------------------------------------------------- /data/body_gmm/cov_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/cov_2.txt -------------------------------------------------------------------------------- /data/body_gmm/cov_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/cov_3.txt -------------------------------------------------------------------------------- /data/body_gmm/cov_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/cov_4.txt -------------------------------------------------------------------------------- /data/body_gmm/cov_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/cov_5.txt -------------------------------------------------------------------------------- /data/body_gmm/cov_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/cov_6.txt -------------------------------------------------------------------------------- /data/body_gmm/cov_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/cov_7.txt -------------------------------------------------------------------------------- /data/body_gmm/mean_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/mean_0.txt -------------------------------------------------------------------------------- /data/body_gmm/mean_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/mean_1.txt -------------------------------------------------------------------------------- /data/body_gmm/mean_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/mean_2.txt -------------------------------------------------------------------------------- /data/body_gmm/mean_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/mean_3.txt -------------------------------------------------------------------------------- /data/body_gmm/mean_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/mean_4.txt -------------------------------------------------------------------------------- /data/body_gmm/mean_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/mean_5.txt -------------------------------------------------------------------------------- /data/body_gmm/mean_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/mean_6.txt -------------------------------------------------------------------------------- /data/body_gmm/mean_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/mean_7.txt -------------------------------------------------------------------------------- /data/body_gmm/weight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/body_gmm/weight.txt -------------------------------------------------------------------------------- /data/smpl_female/faces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_female/faces.txt -------------------------------------------------------------------------------- /data/smpl_female/joints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_female/joints.txt -------------------------------------------------------------------------------- /data/smpl_female/jregressor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_female/jregressor.txt -------------------------------------------------------------------------------- /data/smpl_female/jshape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_female/jshape_blend.txt -------------------------------------------------------------------------------- /data/smpl_female/lbs_weights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_female/lbs_weights.txt -------------------------------------------------------------------------------- /data/smpl_female/shape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_female/shape_blend.txt -------------------------------------------------------------------------------- /data/smpl_female/vertices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_female/vertices.txt -------------------------------------------------------------------------------- /data/smpl_male/faces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_male/faces.txt -------------------------------------------------------------------------------- /data/smpl_male/joints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_male/joints.txt -------------------------------------------------------------------------------- /data/smpl_male/jregressor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_male/jregressor.txt -------------------------------------------------------------------------------- /data/smpl_male/jshape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_male/jshape_blend.txt -------------------------------------------------------------------------------- /data/smpl_male/lbs_weights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_male/lbs_weights.txt -------------------------------------------------------------------------------- /data/smpl_male/shape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_male/shape_blend.txt -------------------------------------------------------------------------------- /data/smpl_male/vertices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smpl_male/vertices.txt -------------------------------------------------------------------------------- /data/smplh_female/faces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_female/faces.txt -------------------------------------------------------------------------------- /data/smplh_female/joints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_female/joints.txt -------------------------------------------------------------------------------- /data/smplh_female/jregressor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_female/jregressor.txt -------------------------------------------------------------------------------- /data/smplh_female/jshape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_female/jshape_blend.txt -------------------------------------------------------------------------------- /data/smplh_female/lbs_weights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_female/lbs_weights.txt -------------------------------------------------------------------------------- /data/smplh_female/lhand_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_female/lhand_components.txt -------------------------------------------------------------------------------- /data/smplh_female/lhand_mean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_female/lhand_mean.txt -------------------------------------------------------------------------------- /data/smplh_female/rhand_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_female/rhand_components.txt -------------------------------------------------------------------------------- /data/smplh_female/rhand_mean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_female/rhand_mean.txt -------------------------------------------------------------------------------- /data/smplh_female/shape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_female/shape_blend.txt -------------------------------------------------------------------------------- /data/smplh_female/vertices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_female/vertices.txt -------------------------------------------------------------------------------- /data/smplh_male/faces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_male/faces.txt -------------------------------------------------------------------------------- /data/smplh_male/joints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_male/joints.txt -------------------------------------------------------------------------------- /data/smplh_male/jregressor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_male/jregressor.txt -------------------------------------------------------------------------------- /data/smplh_male/jshape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_male/jshape_blend.txt -------------------------------------------------------------------------------- /data/smplh_male/lbs_weights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_male/lbs_weights.txt -------------------------------------------------------------------------------- /data/smplh_male/lhand_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_male/lhand_components.txt -------------------------------------------------------------------------------- /data/smplh_male/lhand_mean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_male/lhand_mean.txt -------------------------------------------------------------------------------- /data/smplh_male/rhand_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_male/rhand_components.txt -------------------------------------------------------------------------------- /data/smplh_male/rhand_mean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_male/rhand_mean.txt -------------------------------------------------------------------------------- /data/smplh_male/shape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_male/shape_blend.txt -------------------------------------------------------------------------------- /data/smplh_male/vertices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplh_male/vertices.txt -------------------------------------------------------------------------------- /data/smplx_female/faces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_female/faces.txt -------------------------------------------------------------------------------- /data/smplx_female/joints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_female/joints.txt -------------------------------------------------------------------------------- /data/smplx_female/jregressor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_female/jregressor.txt -------------------------------------------------------------------------------- /data/smplx_female/jshape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_female/jshape_blend.txt -------------------------------------------------------------------------------- /data/smplx_female/lbs_weights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_female/lbs_weights.txt -------------------------------------------------------------------------------- /data/smplx_female/lhand_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_female/lhand_components.txt -------------------------------------------------------------------------------- /data/smplx_female/lhand_mean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_female/lhand_mean.txt -------------------------------------------------------------------------------- /data/smplx_female/rhand_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_female/rhand_components.txt -------------------------------------------------------------------------------- /data/smplx_female/rhand_mean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_female/rhand_mean.txt -------------------------------------------------------------------------------- /data/smplx_female/shape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_female/shape_blend.txt -------------------------------------------------------------------------------- /data/smplx_female/vertices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_female/vertices.txt -------------------------------------------------------------------------------- /data/smplx_male/faces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_male/faces.txt -------------------------------------------------------------------------------- /data/smplx_male/joints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_male/joints.txt -------------------------------------------------------------------------------- /data/smplx_male/jregressor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_male/jregressor.txt -------------------------------------------------------------------------------- /data/smplx_male/jshape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_male/jshape_blend.txt -------------------------------------------------------------------------------- /data/smplx_male/lbs_weights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_male/lbs_weights.txt -------------------------------------------------------------------------------- /data/smplx_male/lhand_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_male/lhand_components.txt -------------------------------------------------------------------------------- /data/smplx_male/lhand_mean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_male/lhand_mean.txt -------------------------------------------------------------------------------- /data/smplx_male/rhand_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_male/rhand_components.txt -------------------------------------------------------------------------------- /data/smplx_male/rhand_mean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_male/rhand_mean.txt -------------------------------------------------------------------------------- /data/smplx_male/shape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_male/shape_blend.txt -------------------------------------------------------------------------------- /data/smplx_male/vertices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_male/vertices.txt -------------------------------------------------------------------------------- /data/smplx_neutral/faces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_neutral/faces.txt -------------------------------------------------------------------------------- /data/smplx_neutral/joints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_neutral/joints.txt -------------------------------------------------------------------------------- /data/smplx_neutral/jregressor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_neutral/jregressor.txt -------------------------------------------------------------------------------- /data/smplx_neutral/jshape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_neutral/jshape_blend.txt -------------------------------------------------------------------------------- /data/smplx_neutral/lbs_weights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_neutral/lbs_weights.txt -------------------------------------------------------------------------------- /data/smplx_neutral/lhand_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_neutral/lhand_components.txt -------------------------------------------------------------------------------- /data/smplx_neutral/lhand_mean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_neutral/lhand_mean.txt -------------------------------------------------------------------------------- /data/smplx_neutral/rhand_components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_neutral/rhand_components.txt -------------------------------------------------------------------------------- /data/smplx_neutral/rhand_mean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_neutral/rhand_mean.txt -------------------------------------------------------------------------------- /data/smplx_neutral/shape_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_neutral/shape_blend.txt -------------------------------------------------------------------------------- /data/smplx_neutral/vertices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/data/smplx_neutral/vertices.txt -------------------------------------------------------------------------------- /output/test.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/output/test.obj -------------------------------------------------------------------------------- /smplx/eigen.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/smplx/eigen.props -------------------------------------------------------------------------------- /smplx/smplx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/smplx/smplx.vcxproj -------------------------------------------------------------------------------- /smplx/smplx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/smplx/smplx.vcxproj.filters -------------------------------------------------------------------------------- /smplx/smplx.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/smplx/smplx.vcxproj.user -------------------------------------------------------------------------------- /smplx_cpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/smplx_cpp.sln -------------------------------------------------------------------------------- /src/gmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/src/gmm.cpp -------------------------------------------------------------------------------- /src/gmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/src/gmm.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/src/math_util.h -------------------------------------------------------------------------------- /src/smpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/src/smpl.cpp -------------------------------------------------------------------------------- /src/smpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyux15/smplx-cpp/HEAD/src/smpl.h --------------------------------------------------------------------------------