CToolGripper.h
Go to the documentation of this file.
1 //==============================================================================
2 /*
3  Software License Agreement (BSD License)
4  Copyright (c) 2003-2016, CHAI3D.
5  (www.chai3d.org)
6 
7  All rights reserved.
8 
9  Redistribution and use in source and binary forms, with or without
10  modification, are permitted provided that the following conditions
11  are met:
12 
13  * Redistributions of source code must retain the above copyright
14  notice, this list of conditions and the following disclaimer.
15 
16  * Redistributions in binary form must reproduce the above
17  copyright notice, this list of conditions and the following
18  disclaimer in the documentation and/or other materials provided
19  with the distribution.
20 
21  * Neither the name of CHAI3D nor the names of its contributors may
22  be used to endorse or promote products derived from this software
23  without specific prior written permission.
24 
25  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
28  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
30  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
31  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  POSSIBILITY OF SUCH DAMAGE.
37 
38  \author <http://www.chai3d.org>
39  \author Francois Conti
40  \author Federico Barbagli
41  \version 3.2.0 $Rev: 1869 $
42 */
43 //==============================================================================
44 
45 //------------------------------------------------------------------------------
46 #ifndef CToolGripperH
47 #define CToolGripperH
48 //------------------------------------------------------------------------------
49 #include "tools/CGenericTool.h"
50 //------------------------------------------------------------------------------
51 
52 //------------------------------------------------------------------------------
53 namespace chai3d {
54 //------------------------------------------------------------------------------
55 
56 //==============================================================================
63 //==============================================================================
64 
65 //==============================================================================
79 //==============================================================================
80 class cToolGripper : public cGenericTool
81 {
82  //--------------------------------------------------------------------------
83  // CONSTRUCTOR & DESTRUCTOR:
84  //--------------------------------------------------------------------------
85 
86 public:
87 
89  cToolGripper(cWorld* a_parentWorld);
90 
92  virtual ~cToolGripper();
93 
94 
95  //--------------------------------------------------------------------------
96  // PUBLIC MEMBERS
97  //--------------------------------------------------------------------------
98 
99 public:
100 
101  // Haptic point modeling the thumb.
103 
104  // Haptic point modeling the index.
106 
107 
108  //--------------------------------------------------------------------------
109  // PUBLIC METHODS
110  //--------------------------------------------------------------------------
111 
112 public:
113 
115  virtual void computeInteractionForces();
116 
118  virtual void render(cRenderOptions& a_options);
119 
121  virtual void setGripperWorkspaceScale(double a_gripperWorkspaceScale) { m_gripperWorkspaceScale = fabs(a_gripperWorkspaceScale); }
122 
124  virtual double getGripperWorskpaceScale() { return (m_gripperWorkspaceScale); }
125 
126 
127  //--------------------------------------------------------------------------
128  // MEMBERS
129  //--------------------------------------------------------------------------
130 
131 protected:
132 
133  // Workspace scale factor of force gripper.
135 };
136 
137 //------------------------------------------------------------------------------
138 } // namespace chai3d
139 //------------------------------------------------------------------------------
140 
141 //------------------------------------------------------------------------------
142 #endif
143 //------------------------------------------------------------------------------
144 
cToolGripper(cWorld *a_parentWorld)
Constructor of cToolGripper.
Definition: CToolGripper.cpp:61
This structures provide a containers for storing rendering options that are passed through the sceneg...
Definition: CRenderOptions.h:82
This class implements a haptic point on a tool.
Definition: CHapticPoint.h:97
virtual void computeInteractionForces()
This method computes the interaction forces between the gripper tool and environment.
Definition: CToolGripper.cpp:97
double m_gripperWorkspaceScale
Definition: CToolGripper.h:134
This class implements a base class for modeling haptic tools.
Definition: CGenericTool.h:85
This class implements a gripper using a two haptic points.
Definition: CToolGripper.h:80
This class implements a virtual world.
Definition: CWorld.h:92
virtual void render(cRenderOptions &a_options)
This method renders the tools using OpenGL.
Definition: CToolGripper.cpp:206
virtual ~cToolGripper()
Destructor of cToolGripper.
Definition: CToolGripper.cpp:84
cHapticPoint * m_hapticPointThumb
Definition: CToolGripper.h:102
virtual double getGripperWorskpaceScale()
This method returns the workspace scale factor of the gripper.
Definition: CToolGripper.h:124
Implements a base class for modeling haptic tools.
Definition: CAudioBuffer.cpp:56
cHapticPoint * m_hapticPointFinger
Definition: CToolGripper.h:105
virtual void setGripperWorkspaceScale(double a_gripperWorkspaceScale)
This method sets a workspace scale factor for the gripper.
Definition: CToolGripper.h:121