Atoms Crowd  4.1.0
JointIkOperator.h
1 #pragma once
2 // ===========================================================================
3 // Copyright (c) 2015 Toolchefs Ltd. All rights reserved.
4 //
5 // Use of this software is subject to the terms of the Toolchefs license
6 // agreement provided at the time of installation or download, or which
7 // otherwise accompanies this software in either electronic or hard copy form.
8 // ===========================================================================
9 
10 #include <AtomsGraph/Ports.h>
11 
12 #include <Atoms/Globals.h>
13 #include <Atoms/Graph/Operator.h>
14 
15 namespace Atoms
16 {
17  class ATOMS_EXPORT JointIkOperator : public Operator
18  {
19  public:
20 
21  NODE_STANDARD_MEMBERS
22 
24 
25  virtual ~JointIkOperator();
26 
27  bool compute(const AtomsGraph::ComputeData* computeData);
28 
29  void reset();
30 
31  private:
32  AtomsGraph::PosePort* m_inPose;
33  AtomsGraph::VectorPort* m_inTargetVector;
34  AtomsGraph::StringPort* m_inRootJointName;
35  AtomsGraph::StringPort* m_inMidJointName;
36  AtomsGraph::StringPort* m_inEndJointName;
37  AtomsGraph::BooleanPort* m_inUseFabrik;
38  AtomsGraph::VectorPort* m_inPoleVector;
39  AtomsGraph::DoublePort* m_inWeight;
40  bool m_first;
41  };
42 }
Atoms::JointIkOperator::compute
bool compute(const AtomsGraph::ComputeData *computeData)
Compute function.
Atoms::JointIkOperator::reset
void reset()
Operator reset function.
AtomsGraph::PortTemplate
Generic node port class.
Definition: PortTemplate.h:24
Atoms::JointIkOperator
Definition: JointIkOperator.h:18
Atoms
Atoms namespace.
Definition: Agent.h:28
Atoms::Operator
Operator node.
Definition: Operator.h:26
AtomsGraph::ComputeData
Definition: Node.h:21