MCPcopy Create free account
hub / github.com/ImageEngine/cortex / Sample

Class Sample

include/IECoreScene/private/TransformStack.h:80–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78 private :
79
80 struct Sample
81 {
82 Sample( float t, const Imath::M44f &m )
83 : time( t ), matrix( m )
84 {
85 }
86
87 bool operator < ( float t ) const
88 {
89 return time < t;
90 }
91
92 float time;
93 Imath::M44f matrix;
94 };
95 typedef std::vector<Sample> Samples;
96
97 typedef std::stack<Samples> Stack;

Callers 2

TransformStackMethod · 0.85
motionBeginMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected