📄 pov.h
字号:
//// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -