Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ugeentityaxes.h 411B

12345678910111213141516171819202122
  1. #ifndef UGEENTITYAXES_H
  2. #define UGEENTITYAXES_H
  3. #include "entities/ugeentity.h"
  4. class UGEEntityAxes : public UGEEntity
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit UGEEntityAxes(QObject *parent = 0);
  9. virtual void onDraw(AbstractRenderDevice* device);
  10. virtual Vector3D getVectorNearestIntesection(const Vector3D &vector, const Vector3D &pos, bool* ok);
  11. signals:
  12. public slots:
  13. };
  14. #endif // UGEENTITYAXES_H