source: flair-src/trunk/lib/FlairSimulator/src/Blade.h@ 341

Last change on this file since 341 was 339, checked in by Sanahuja Guillaume, 4 years ago

allow all blade rotations

File size: 1.6 KB
Line 
1// %flair:license{
2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
4// %flair:license}
5// created: 2012/08/22
6// filename: Blade.h
7//
8// author: Guillaume Sanahuja
9// Copyright Heudiasyc UMR UTC/CNRS 7253
10//
11// version: $Id: $
12//
13// purpose: classe definissant une Blade
14//
15/*********************************************************************/
16
17#ifndef BLADE_H
18#define BLADE_H
19
20#include <ISceneNode.h>
21
22namespace irr {
23namespace scene {
24class IMesh;
25}
26}
27
28namespace flair {
29namespace simulator {
30class MeshSceneNode;
31class Model;
32
33class Blade : public irr::scene::ISceneNode {
34public:
35 Blade(Model *parent,
36 const irr::core::vector3df &position = irr::core::vector3df(0, 0, 0),
37 const irr::core::vector3df &rotation = irr::core::vector3df(0, 0, 0),
38 bool inverted = false, irr::s32 id = -1);
39
40 Blade(irr::scene::ISceneNode *parent,
41 const irr::core::vector3df &position = irr::core::vector3df(0, 0, 0),
42 const irr::core::vector3df &rotation = irr::core::vector3df(0, 0, 0),
43 bool inverted = false, irr::s32 id = -1);
44
45 virtual void OnRegisterSceneNode(void);
46 virtual void render(void);
47 virtual const irr::core::aabbox3d<irr::f32> &getBoundingBox(void) const {
48 return Box;
49 }
50 void SetRotationSpeed(const irr::core::vector3df &value);
51
52private:
53 irr::scene::IMesh *pale;
54 irr::core::aabbox3d<irr::f32> Box;
55 MeshSceneNode *pale_1, *pale_2;
56 irr::scene::ISceneNodeAnimator *anim;
57};
58} // end namespace simulator
59} // end namespace flair
60#endif // BLADE_H
Note: See TracBrowser for help on using the repository browser.