00001 //deprecated 00003 // 00004 // PROJECT.....: vpat - Creating Virtual Patients 00005 // RESPONSIBLE.: Carla Freitas e Luciana Nedel 00006 // 00007 // FILE........: vpcuttools.cpp 00008 // DESCRIPTION.: Contain the VPCutTools class implementation. 00009 // 00010 // AUTHOR......: Isabel Harb Manssour 00011 // DATE........: December/12/2000 00012 // DESCRIPTION.: Implementation of class methods. 00013 // 00015 00016 00017 #include <vpcuttools.h> 00018 00019 00021 // Description: Class "VPCutTools" constructor without parameter. 00022 // Parameters.: - 00023 // Return.....: - 00024 00025 VPCutTools::VPCutTools () { 00026 00027 } 00028 00029 00031 // Description: Method "vpSetPointLeft" sends a new value to the 00032 // "left" attribute. 00033 // Parameters.: VPPoint3D l 00034 // Return.....: - 00035 00036 void VPCutTools::vpSetPointLeft(VPPoint3D l) { 00037 left = l; 00038 } 00039 00040 00042 // Description: Method "vpGetPointLeft" returns the value of "left" 00043 // attribute. 00044 // Parameters.: - 00045 // Return.....: VPPoint3D left 00046 00047 VPPoint3D VPCutTools::vpGetPointLeft(void) { 00048 return left; 00049 } 00050 00051 00053 // Description: Method "vpSetPointRight" sends a new value to the 00054 // "right" attribute. 00055 // Parameters.: VPPoint3D r 00056 // Return.....: - 00057 00058 void VPCutTools::vpSetPointRight(VPPoint3D r) { 00059 right = r; 00060 } 00061 00062 00064 // Description: Method "vpGetPointRight" returns the value of "right" 00065 // attribute. 00066 // Parameters.: - 00067 // Return.....: VPPoint3D right 00068 00069 VPPoint3D VPCutTools::vpGetPointRight(void) { 00070 return right; 00071 } 00072