ESyS-Particle  2.3
frame.h
Go to the documentation of this file.
1 // //
3 // Copyright (c) 2003-2014 by The University of Queensland //
4 // Centre for Geoscience Computing //
5 // http://earth.uq.edu.au/centre-geoscience-computing //
6 // //
7 // Primary Business: Brisbane, Queensland, Australia //
8 // Licensed under the Open Software License version 3.0 //
9 // http://www.opensource.org/licenses/osl-3.0.php //
10 // //
12 
13 #ifndef __FRAME_H
14 #define __FRAME_H
15 
16 // -- project includes --
17 #include "colormap.h"
18 
19 // -- STL includes --
20 #include <vector>
21 #include <string>
22 #include <map>
23 
24 using std::string;
25 using std::vector;
26 using std::map;
27 
28 void do_single_frame(const string&,const string&,int,const vector<string>&,int,const ColorMap*,int,Vec3,Vec3,bool,bool);
29 void do_single_frame_r(const string&,const string&,int,const vector<string>&,int,const ColorMap*,int,Vec3,Vec3,bool,bool,bool,map<int,Vec3>&);
30 map<int,Vec3> get_frame_disp_r(const string&);
31 
32 #endif // __FRAME_H
void do_single_frame_r(const string &, const string &, int, const vector< string > &, int, const ColorMap *, int, Vec3, Vec3, bool, bool, bool, map< int, Vec3 > &)
Definition: frame.cpp:263
Definition: vec3.h:46
map< int, Vec3 > get_frame_disp_r(const string &)
Definition: frame.cpp:503
Definition: colormap.h:18
void do_single_frame(const string &, const string &, int, const vector< string > &, int, const ColorMap *, int, Vec3, Vec3, bool, bool)
Definition: frame.cpp:63