Files Classes Functions Hierarchy
#include <iostream>
Go to the source code of this file.
Classes | |
| class | virtualtetrahedron |
Typedefs | |
| typedef unsigned int | uint |
| typedef unsigned int const | uintc |
Functions | |
| ostream & | operator<< (ostream &os, virtualtetrahedron const &x) |
| typedef unsigned int uint |
Definition at line 7 of file virtualtetrahedron.h.
| typedef unsigned int const uintc |
Definition at line 8 of file virtualtetrahedron.h.
| ostream& operator<< | ( | ostream & | os, | |
| virtualtetrahedron const & | x | |||
| ) |
Definition at line 128 of file virtualtetrahedron.cpp.
References virtualtetrahedron::v.
00129 { 00130 os << x.v[0] << " " << x.v[1] << " " << x.v[2] << " " << x.v[3]; 00131 return os; 00132 }
1.5.8