iMSTK
Interactive Medical Simulation Toolkit
imstkAnimationObject.cpp
1 /*
2 ** This file is part of the Interactive Medical Simulation Toolkit (iMSTK)
3 ** iMSTK is distributed under the Apache License, Version 2.0.
4 ** See accompanying NOTICE for details.
5 */
6 
7 #include "imstkAnimationObject.h"
8 
9 namespace imstk
10 {
11 std::shared_ptr<AnimationModel>
13 {
14  return m_animationModel;
15 }
16 
17 void
18 AnimationObject::setAnimationModel(std::shared_ptr<AnimationModel> model)
19 {
20  m_animationModel = model;
21 }
22 } // namespace imstk
Compound Geometry.
std::shared_ptr< AnimationModel > getAnimationModel() const
Set/Get animation model.