00001 /** 00002 *\file point.cpp 00003 * 00004 *\brief 00005 * 00006 *\author Xianming Chen\n 00007 * Computer Science Department\n 00008 * University of Utah 00009 * 00010 *\date 20 Aug 2006\n 00011 * Copyright (c) 2006, University of Utah 00012 */ 00013 00014 00015 #include "point.h" 00016 #include <iostream> 00017 using namespace std; 00018 00019 00020 namespace euler 00021 { 00022 00023 ostream& operator<<(ostream& os, point_t const& p) 00024 { 00025 return os << "(" << p[0] << ", " << p[1] << ", " << p[2] << ", " << p[3] << ")"; 00026 } 00027 00028 00029 00030 00031 00032 }//end namespace euler
1.4.6