/bvh11

A tiny C++11 library for reading BVH motion capture data

Primary LanguageC++MIT LicenseMIT

bvh11

Build Status

A tiny C++11 library for reading BVH motion capture data.

Dependencies

Additional Dependencies for Demos

Usage

Build and Install

$ git clone https://github.com/yuki-koyama/bvh11.git --recursive
$ mkdir build
$ cd build
$ cmake ../bvh11
$ make
$ make install

Import BVH

#include <bvh11.hpp>

int main()
{
  bvh11::BvhObject("/path/to/bvh/data.bvh");

  // Do something

  return 0;
}

License

MIT License.

Contributing

Contributions are welcome.