Atoms Crowd  4.1.0
AgentJointWorldPositionOperator.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 AgentJointWorldPositionOperator : public Operator
18  {
19  public:
20 
21  NODE_STANDARD_MEMBERS
22 
24 
26 
27  bool compute(const AtomsGraph::ComputeData* computeData);
28 
29  void reset();
30 
31  private:
32  AtomsGraph::DoublePort* m_time;
33  AtomsGraph::LongPort* m_jointIndex;
34 
35  AtomsGraph::VectorPort* m_outPosition;
36 
37  bool m_first;
38  };
39 }
Atoms::AgentJointWorldPositionOperator::compute
bool compute(const AtomsGraph::ComputeData *computeData)
Compute function.
AtomsGraph::PortTemplate
Generic node port class.
Definition: PortTemplate.h:24
Atoms::AgentJointWorldPositionOperator
Definition: AgentJointWorldPositionOperator.h:18
Atoms
Atoms namespace.
Definition: Agent.h:28
Atoms::Operator
Operator node.
Definition: Operator.h:26
Atoms::AgentJointWorldPositionOperator::reset
void reset()
Operator reset function.
AtomsGraph::ComputeData
Definition: Node.h:21