2023-06-18 07:45:39 -04:00
|
|
|
#ifndef LEGO3DVIEW_H
|
|
|
|
#define LEGO3DVIEW_H
|
|
|
|
|
2023-12-16 13:14:01 -05:00
|
|
|
#include "mxtypes.h"
|
2023-11-19 09:38:07 -05:00
|
|
|
#include "viewmanager/viewmanager.h"
|
2023-06-18 07:45:39 -04:00
|
|
|
|
2023-12-16 13:14:01 -05:00
|
|
|
class LegoROI;
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
class Lego3DView {
|
2023-06-18 07:45:39 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
inline ViewManager* GetViewManager() { return this->m_viewManager; }
|
2023-12-16 13:14:01 -05:00
|
|
|
LegoROI* PickROI(MxLong p_a, MxLong p_b);
|
2023-06-18 07:45:39 -04:00
|
|
|
|
|
|
|
private:
|
2023-12-13 05:48:14 -05:00
|
|
|
char m_pad[0x88];
|
2023-10-24 19:38:27 -04:00
|
|
|
ViewManager* m_viewManager;
|
2023-06-18 07:45:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGO3DVIEW_H
|