Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include "mitkLineOperation.h"
00020
00021 mitk::LineOperation::LineOperation(OperationType operationType, int cellId, Vector3D vector, int pIdA, int pIdB, int id)
00022 : mitk::CellOperation(operationType, cellId, vector), m_PIdA(pIdA), m_PIdB(pIdB), m_Id(id)
00023 {}
00024 mitk::LineOperation::LineOperation(OperationType operationType, int cellId, int pIdA, int pIdB, int id)
00025 : mitk::CellOperation(operationType, cellId), m_PIdA(pIdA), m_PIdB(pIdB), m_Id(id)
00026 {}
00027
00028 int mitk::LineOperation::GetPIdA()
00029 {
00030 return m_PIdA;
00031 }
00032
00033 int mitk::LineOperation::GetPIdB()
00034 {
00035 return m_PIdB;
00036 }
00037
00038 int mitk::LineOperation::GetId()
00039 {
00040 return m_Id;
00041 }
00042
00043