00001 #include <stdio.h> 00002 #include <stdlib.h> 00003 #include "prismMesh.h" 00004 00005 // declaring these inline confuses the Intel C++ 7.1 compiler... 00006 CkVector3d *PrismMesh::getPointArray(void) { 00007 return &(pts[0]); 00008 } 00009 const CkVector3d *PrismMesh::getPointArray(void) const { 00010 return &(pts[0]); 00011 }