Main Page   Namespace List   Class Hierarchy   Alphabetical List   Data Structures   File List   Namespace Members   Data Fields   Globals  

ExCVec3D.cpp File Reference

#include "ExCVec3D.h"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &s, const ExCVec3D &vec)
std::ostrstream & operator<< (std::ostrstream &s, const ExCVec3D &vec)


Function Documentation

std::ostrstream& operator<< std::ostrstream &    s,
const ExCVec3D   vec
 

Definition at line 150 of file ExCVec3D.cpp.

References ExCVec3D::m_Vector.

00151 {
00152         s<<"X:"<<(float)vec.m_Vector[0]<<" Y:"<<(float)vec.m_Vector[1]<<" Z:"<<(float)vec.m_Vector[2];
00153         return s;
00154 }

std::ostream& operator<< std::ostream &    s,
const ExCVec3D   vec
 

Definition at line 145 of file ExCVec3D.cpp.

References ExCVec3D::m_Vector.

00146 {
00147         s<<"X:"<<(float)vec.m_Vector[0]<<" Y:"<<(float)vec.m_Vector[1]<<" Z:"<<(float)vec.m_Vector[2];
00148         return s;
00149 }


Generated on Tue Dec 10 18:20:11 2002 for ExNihilo by doxygen1.3-rc1