0 Star 0 Fork 1

ianaxe/vrpn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vrpn_Tracker_Colibri.h 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
mitya 提交于 2015-03-20 16:52 . Adding support for Trivisio ColibriAPI.
///////////////////////////////////////////////////////////////////////////////////////////////
//
// Name: vrpn_Tracker_Colibri.h
//
// Author: Dmitry Mastykin
//
// Description: VRPN tracker class for Trivisio Colibri device (based on ColibriAPI).
//
///////////////////////////////////////////////////////////////////////////////////////////////
#ifndef VRPN_TRACKER_COLIBRI
#define VRPN_TRACKER_COLIBRI
#include "vrpn_Configure.h" // IWYU pragma: keep
#ifdef VRPN_USE_COLIBRIAPI
#include "vrpn_Tracker.h"
#include "colibri_api.h"
class vrpn_Tracker_Colibri : public vrpn_Tracker {
public:
// Constructor
//
// name: VRPN tracker name
//
// c: VRPN connection to use
//
// Hz: Update rate in Hertz
//
//
vrpn_Tracker_Colibri(const char* name, vrpn_Connection* c,
const char* path, int Hz, bool report_a_w);
~vrpn_Tracker_Colibri();
/// This function should be called each time through the main loop
/// of the server code. It checks for a report from the tracker and
/// sends it if there is one.
virtual void mainloop();
protected:
virtual void get_report();
virtual void send_report();
TCHandle nw; // Network handle
bool report_a_w;
};
#endif
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/ianaxe/vrpn.git
git@gitee.com:ianaxe/vrpn.git
ianaxe
vrpn
vrpn
master

搜索帮助