Welcome to mirror list, hosted at ThFree Co, Russian Federation.

elbeem_control.cpp « intern « elbeem « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc03f959febfdf98f229040e1883502546d0b274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/** \file elbeem/intern/elbeem_control.cpp
 *  \ingroup elbeem
 */
/******************************************************************************
 *
 * El'Beem - Free Surface Fluid Simulation with the Lattice Boltzmann Method
 * All code distributed as part of El'Beem is covered by the version 2 of the 
 * GNU General Public License. See the file COPYING for details.
 * Copyright 2003-2006 Nils Thuerey
 *
 * Control API header
 */

#include "elbeem.h"
#include "elbeem_control.h"

// add mesh as fluidsim object
int elbeemControlAddSet(struct elbeemControl*) {
	
	return 0;
}

int elbeemControlComputeMesh(struct elbeemMesh*) {
	
	
	return 0;
}