pov.h

来自「行人模拟」· C头文件 代码 · 共 34 行

H
34
字号
//// pedsim - A microscopic pedestrian simulation system. // Copyright (c) 2003 - 2004 by Christian Gloor//                              // You can redistribute and/or modify this program under the terms of// the GNU General Public License.  See copying.txt for details.// #ifndef _pov_h_ #define _pov_h_ 1using namespace std;//#include <netdb.h>  // gethostbyname()#include <iostream> // cout ...#include <fstream> // files#include <string>     // strncpy#include <map>      // maps class Tpov {  ofstream file;  char filename[255];  void newfile(long systemtime); public:  Tpov(char *replicator);  void render_frame(long timestep, bool render);  void draw_tree(int id, double size, double rotation, double x, double y);  void draw_position(int id, int type, double color, double x, double y, double direction, double sword);};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?