iMSTK
Interactive Medical Simulation Toolkit
imstkChartVisualModel.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 "imstkChartVisualModel.h"
8 #include "imstkDataArray.h"
9 #include "imstkLogger.h"
10 
11 using namespace imstk;
12 
13 ChartVisualModel::ChartVisualModel()
14 {
15  setDelegateHint("Chart");
16 
17  m_viewBounds[0] = 0.0;
18  m_viewBounds[1] = 320.0;
19  m_viewBounds[2] = 0.0;
20  m_viewBounds[3] = 220.0;
21 }
Compound Geometry.