00001 /*=auto========================================================================= 00002 00003 Portions (c) Copyright 2005 Brigham and Women's Hospital (BWH) All Rights Reserved. 00004 00005 See Doc/copyright/copyright.txt 00006 or http://www.slicer.org/copyright/copyright.txt for details. 00007 00008 Program: 3D Slicer 00009 Module: $RCSfile: vtkPreciseHyperPoint.h,v $ 00010 Date: $Date: 2006/04/27 22:52:38 $ 00011 Version: $Revision: 1.6 $ 00012 00013 =========================================================================auto=*/ 00014 #ifndef __vtkPreciseHyperPoint_h 00015 #define __vtkPreciseHyperPoint_h 00016 00017 #include "vtkTeemConfigure.h" 00018 00019 //BTX 00020 00021 class VTK_Teem_EXPORT vtkPreciseHyperPoint { //;prevent man page generation 00022 public: 00023 vtkPreciseHyperPoint(); 00024 vtkPreciseHyperPoint &operator=(const vtkPreciseHyperPoint& hp); //for resizing 00025 00026 vtkFloatingPointType X[3]; 00027 vtkIdType CellId; 00028 int SubId; 00029 vtkFloatingPointType P[3]; 00030 vtkFloatingPointType W[3]; 00031 vtkFloatingPointType *V[3]; 00032 vtkFloatingPointType V0[3]; 00033 vtkFloatingPointType V1[3]; 00034 vtkFloatingPointType V2[3]; 00035 vtkFloatingPointType S; 00036 vtkFloatingPointType D; 00037 }; 00038 //ETX 00039 00040 #endif
1.6.1