Blender V2.61 - r43446
|
00001 00004 /****************************************************************************** 00005 * 00006 * El'Beem - Free Surface Fluid Simulation with the Lattice Boltzmann Method 00007 * Copyright 2003-2006 Nils Thuerey 00008 * 00009 * Replaces std. raytracer, and only dumps time dep. objects to disc, header 00010 * 00011 *****************************************************************************/ 00012 #ifndef NTL_BLENDERDUMPER_H 00013 #include "ntl_world.h" 00014 00015 class ntlBlenderDumper : 00016 public ntlWorld 00017 { 00018 public: 00020 ntlBlenderDumper(); 00021 ntlBlenderDumper(string filename, bool commandlineMode); 00023 virtual ~ntlBlenderDumper( void ); 00024 00026 virtual int renderScene( void ); 00027 00028 protected: 00029 00030 }; 00031 00032 #define NTL_BLENDERDUMPER_H 00033 #endif 00034