Free Electron
BendOp.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __operator_BendOp_h__
8 #define __operator_BendOp_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Bend surface to the side
17 
18  @ingroup operator
19 *//***************************************************************************/
20 class FE_DL_EXPORT BendOp:
21  public OperatorSurfaceCommon,
22  public Initialize<BendOp>
23 {
24  public:
25 
26  BendOp(void) {}
27 virtual ~BendOp(void) {}
28 
29  void initialize(void);
30 
31  //* As HandlerI
32 virtual void handle(Record& a_rSignal);
33 
34  private:
35 
36  void solve(SpatialTransform& a_rPartial,
37  const SpatialTransform& a_rDelta,Real a_power) const;
38 
39  MatrixPower<SpatialTransform> m_matrixPower;
40  MatrixBezier<SpatialTransform> m_matrixBezier;
41  BWORD m_useBezier;
42 };
43 
44 } /* namespace ext */
45 } /* namespace fe */
46 
47 #endif /* __operator_BendOp_h__ */
Bend surface to the side.
Definition: BendOp.h:20
kernel
Definition: namespace.dox:3
General template for fixed size numeric matrices.
Definition: Matrix.h:42
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Partial Generic SurfaceI Implemention.
Definition: OperatorSurfaceCommon.h:20
Reference to an instance of a Layout.
Definition: RecordSB.h:35
solve B = A^^power, where A is a matrix
Definition: MatrixBezier.h:30