0031459: Visualization, AIS_TextLabel - add missing getters
[occt.git] / src / AIS / AIS_ManipulatorMode.hxx
CommitLineData
625e1958 1// Created on: 2015-02-05
2// Created by: Anastasia BORISOVA
3// Copyright (c) 2015 OPEN CASCADE SAS
4//
5// This file is part of Open CASCADE Technology software library.
6//
7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
12//
13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
15
16#ifndef _AIS_ManipulatorMode_HeaderFile
17#define _AIS_ManipulatorMode_HeaderFile
18
19//! Mode to make definite kind of transformations with AIS_Manipulator object.
20enum AIS_ManipulatorMode
21{
22 AIS_MM_None = 0,
23 AIS_MM_Translation = 1,
24 AIS_MM_Rotation,
f522ce50 25 AIS_MM_Scaling,
26 AIS_MM_TranslationPlane
625e1958 27};
28
29#endif