add scale factor parameter to ConvertToMeshFile

This commit is contained in:
gered 2012-12-11 11:10:17 -05:00
parent c219755654
commit 15fed2c5c3
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@
#include "geometry/vector3.h"
#include <string>
BOOL ConvertToMeshFile(const std::string &meshFilename, const Ms3d *source)
BOOL ConvertToMeshFile(const std::string &meshFilename, const Ms3d *source, float scaleFactor)
{
return FALSE;
}

View file

@ -6,6 +6,6 @@
class Ms3d;
BOOL ConvertToMeshFile(const std::string &meshFilename, const Ms3d *source);
BOOL ConvertToMeshFile(const std::string &meshFilename, const Ms3d *source, float scaleFactor);
#endif