comparison plugin/transform/ModelTransformer.cpp @ 350:d7c41483af8f

* Merge from transforms branch -- switch over to using Transform object properly
author Chris Cannam
date Fri, 07 Dec 2007 16:47:31 +0000
parents f620ce48c950
children
comparison
equal deleted inserted replaced
348:edda24bb85fc 350:d7c41483af8f
13 COPYING included with this distribution for more information. 13 COPYING included with this distribution for more information.
14 */ 14 */
15 15
16 #include "ModelTransformer.h" 16 #include "ModelTransformer.h"
17 17
18 ModelTransformer::ModelTransformer(Model *m) : 18 ModelTransformer::ModelTransformer(Input input, const Transform &transform) :
19 m_input(m), 19 m_transform(transform),
20 m_input(input),
20 m_output(0), 21 m_output(0),
21 m_detached(false), 22 m_detached(false),
22 m_abandoned(false) 23 m_abandoned(false)
23 { 24 {
24 } 25 }