#include "./pv_matrix.h"#include <iostream>#include <GL/gl.h>#include "pv_matrix_ro.h"#include "pv_matrix_tr.h"#include "pv_tools.h"Include dependency graph for pv_matrix.cxx:

Functions | |
| std::ostream & | operator<< (std::ostream &s, const Pv_Matrix &z) |
|
||||||||||||
|
00115 {
00116 s<<"Pv_Matrix:\n";
00117 for(int i=0;i<=3;i++){
00118 s<<" ";
00119 for(int j=0;j<=3;j++){
00120 std::cout.width(12);
00121 s<<z.m[i][j];
00122 std::cout.width(1);
00123 s<<":";
00124 }
00125 s<<"\n";
00126 }
00127 return(s);
00128 }
|
1.2.18