Atoms Crowd  4.1.0
SetAgentJointPose.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/Globals.h>
11 #include <AtomsGraph/Ports.h>
12 #include <Atoms/Graph/Operator.h>
13 
14 #include <Atoms/Globals.h>
15 #include <Atoms/Agent.h>
16 #include <AtomsUtils/Logger.h>
17 
18 namespace Atoms
19 {
20  class ATOMS_EXPORT SetAgentJointPoseNode : public Operator
21  {
22  public:
23  NODE_STANDARD_MEMBERS
24 
26 
27  virtual ~SetAgentJointPoseNode();
28 
29  bool compute(const AtomsGraph::ComputeData* computeData);
30 
31  void reset();
32 
33  private:
34 
35  AtomsGraph::PosePort* m_inPose;
36 
37  AtomsGraph::LongPort* m_jointId;
38 
39  AtomsGraph::BooleanPort* m_worldSpace;
40 
41  AtomsGraph::VectorPort* m_translation;
42 
43  AtomsGraph::VectorPort* m_scale;
44 
45  AtomsGraph::QuaternionPort* m_rotation;
46 
47  };
48 }
Atoms::SetAgentJointPoseNode::compute
bool compute(const AtomsGraph::ComputeData *computeData)
Compute function.
Atoms::SetAgentJointPoseNode::reset
void reset()
Operator reset function.
AtomsGraph::PortTemplate
Generic node port class.
Definition: PortTemplate.h:24
Atoms
Atoms namespace.
Definition: Agent.h:28
Atoms::Operator
Operator node.
Definition: Operator.h:26
Atoms::SetAgentJointPoseNode
Definition: SetAgentJointPose.h:21
AtomsGraph::ComputeData
Definition: Node.h:21