Show trackball.h syntax highlighted
#ifndef GFXTRACKBALL_INCLUDED // -*- C++ -*-
#define GFXTRACKBALL_INCLUDED
#if !defined(__GNUC__)
# pragma once
#endif
/************************************************************************
Virtual trackball rotation control.
$Id: trackball.h 5690 2005-02-14 14:21:56Z rivol $
************************************************************************/
#include "baseball.h"
extern void trackball(Quat& q, float p1x, float p1y, float p2x, float p2y);
class Trackball : public Baseball
{
public:
Quat lastquat;
public:
Trackball();
virtual void update_animation();
virtual bool mouse_down(int *where, int which);
virtual bool mouse_up(int *where, int which);
virtual bool mouse_drag(int *where, int *last, int which);
};
// GFXTRACKBALL_INCLUDED
#endif
See more files for this project here