OpenLexocad  27.1
CmdSetElementLengthAxis.h
Go to the documentation of this file.
1 // //
3 // LEXOCAD API //
4 // //
5 // ©2005-2016 Cadwork Informatik. All rights reserved. //
6 // //
7 // ONLY INCLUDE OTHER INTERFACES! //
8 // Lexocad provides API Classes for public use and //
9 // Implementation Classes for private use. //
10 // //
11 // - Do ONLY include and use the LEXOCAD API in this header. //
12 // - Do not change existing interfaces. //
13 // - Document your code! //
14 // //
15 // - All types from Base, Core, Geom, Topo are allowed here. //
16 // - In the Gui modules the use of Qt types is allowed. //
17 // //
19 
20 #pragma once
21 #include <Core/Command.h>
22 #include <OpenLxApp/Element.h>
23 
24 
25 #include <memory>
26 
27 namespace OpenLxCmd
28 {
35 class LX_OPENLXCMD_EXPORT CmdSetElementLengthAxis : public Core::Command
36 {
37 public:
39  CmdSetElementLengthAxis(std::shared_ptr<OpenLxApp::Element> aElem, const Geom::Pnt& pnt1, const Geom::Pnt& pnt2);
41 
42  bool redo() override;
43  bool undo() override;
44 
45 private:
46  Command* _cmd = nullptr;
47 };
48 } // namespace OpenLxCmd
Defines a non-persistent 3D Cartesian point.
Definition: Pnt.h:43
bool undo(int id=0)
Will UNDO one step, returns False if no undo was done (Undos == 0).
Definition: CmdSetElementLengthAxis.h:35
bool redo(int id=0)
Will REDO one step, returns False if no redo was done (Redos == 0).
Definition: CmdAddBolt.h:7
Definition: Command.h:34