RobinTrace
ray_pack.h
Go to the documentation of this file.
1 
2 #ifndef RAY_PACK_H
3 #define RAY_PACK_H
4 
5 #include "pinyo.h"
6 #include <iostream>
7 #include <vector>
8 
12 typedef std::vector<bun> ray_pack;
13 
15 std::ostream& operator<< (std::ostream &out, const ray_pack &ray_buns);
16 
17 #endif // RAY_PACK_H
std::ostream & operator<<(std::ostream &out, const ray_pack &ray_buns)
ray_pack printer.
Definition: ray_pack.cpp:3
std::vector< bun > ray_pack
Vector of ray bundles.
Definition: ray_pack.h:12