mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-21 10:13:43 +03:00
15 lines
329 B
C++
Executable File
15 lines
329 B
C++
Executable File
#ifndef OPENGL_TRANSFORM_PERSISTENCE_H
|
|
#define OPENGL_TRANSFORM_PERSISTENCE_H
|
|
|
|
enum TP_FLAGS
|
|
{
|
|
TPF_PAN = 0x001,
|
|
TPF_ZOOM = 0x002,
|
|
TPF_RELATIVE_ZOOM = 0x004,
|
|
TPF_ROTATE = 0x008,
|
|
TPF_RELATIVE_ROTATE = 0x010,
|
|
TPF_TRIEDRON = 0x020
|
|
};
|
|
|
|
#endif /*OPENGL_TRANSFORM_PERSISTENCE_H*/
|