SMILX  1.01
milxDeformableModel.cxx
1 /*=========================================================================
2  Program: milxSMILI
3  Module: milxDeformableModel
4  Author: Shekhar Chandra
5  Language: C++
6  Created: 18 Apr 2011 12:03:00 EST
7 
8  The Software is copyright (c) Commonwealth Scientific and Industrial Research Organisation (CSIRO)
9  ABN 41 687 119 230.
10  All rights reserved.
11 
12  Licensed under the CSIRO BSD 3-Clause License
13  You may not use this file except in compliance with the License.
14  You may obtain a copy of the License in the file LICENSE.md or at
15 
16  https://stash.csiro.au/projects/SMILI/repos/smili/browse/license.txt
17 
18  Unless required by applicable law or agreed to in writing, software
19  distributed under the License is distributed on an "AS IS" BASIS,
20  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21  See the License for the specific language governing permissions and
22  limitations under the License.
23 =========================================================================*/
24 #include "milxDeformableModel.h"
25 //SMILI
26 #include "milxMath.h"
27 
28 namespace milx
29 {
30 
32 {
34 }
35 
36 DeformableModel::DeformableModel(vtkSmartPointer<vtkPolyData> model)
37 {
39  Model::SetInput(model);
40 }
41 
42 } //end milx namespace
bool InternalInPlaceOperation
Used by the collection members to assign via pointers rather than deep copys.
Definition: milxModel.h:781
DeformableModel()
Standard constructor.
void SetInput(vtkSmartPointer< vtkPolyData > model)
Assigns the input model to class.
Definition: milxModel.cxx:130
Represents a model (i.e. a model with cells and scalar values) and their common operations. Also allows batch operations on collection of models.
Definition: milxModel.h:113