cisst-saw
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
robLinearSE3.h
Go to the documentation of this file.
1 /*
2 
3  Author(s): Simon Leonard
4  Created on: Nov 11 2009
5 
6  (C) Copyright 2008 Johns Hopkins University (JHU), All Rights
7  Reserved.
8 
9 --- begin cisst license - do not edit ---
10 
11 This software is provided "as is" under an open source license, with
12 no warranty. The complete license can be found in license.txt and
13 http://www.cisst.org/cisst/license.txt.
14 
15 --- end cisst license ---
16 */
17 
18 #ifndef _robLinearSE3_h
19 #define _robLinearSE3_h
20 
22 #include <cisstRobot/robExport.h>
23 
25 
26  protected:
27 
28  double vmax;
29  double wmax;
30 
31  public:
32 
33  robLinearSE3( const vctFrame4x4<double>& Rtw1,
34  const vctFrame4x4<double>& Rtw2,
35  double vmax, double wmax,
36  double t1 = 0.0 );
37 
38  robLinearSE3( const vctFrame4x4<double>& Rtw1,
39  const vctFrame4x4<double>& Rtw2,
40  double dt = 1.0 );
41 
42  void Evaluate( double t,
46 
47  void Blend( robFunction* function, double vmax, double vdmax );
48 
49  robLinearSE3& operator=( const robLinearSE3& function );
50 
51 };
52 
53 #endif
#define CISST_EXPORT
Definition: cmnExportMacros.h:50
double wmax
Definition: robLinearSE3.h:29
robFunctionSE3 & operator=(const robFunctionSE3 &function)
Base class for robot function.
Definition: robFunction.h:31
virtual void Evaluate(double, vctFrame4x4< double > &, vctFixedSizeVector< double, 6 > &, vctFixedSizeVector< double, 6 > &)=0
Definition: robFunctionSE3.h:28
double vmax
Definition: robLinearSE3.h:28
virtual void Blend(robFunction *function, double vmax, double vdmax)=0
Definition: robLinearSE3.h:24