Free Electron
InvKineCCD.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 __geometry_InvKineCCD_h__
8 #define __geometry_InvKineCCD_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 /**************************************************************************//**
15  @brief Inverse Kinematic by Cyclic Coordinate Descent
16 
17  @ingroup geometry
18 
19 *//***************************************************************************/
20 class FE_DL_EXPORT InvKineCCD
21 {
22  public:
23 
24 static void solve(Array<SpatialVector>& a_location,
25  U32 a_index,U32 a_count,const SpatialVector& a_target);
26 };
27 
28 } /* namespace ext */
29 } /* namespace fe */
30 
31 #endif /* __geometry_InvKineCCD_h__ */
kernel
Definition: namespace.dox:3
Inverse Kinematic by Cyclic Coordinate Descent.
Definition: InvKineCCD.h:20
Wrapper for std::vector.
Definition: Array.h:21