add scale factor parameter to ConvertToMeshFile
This commit is contained in:
parent
c219755654
commit
15fed2c5c3
|
@ -21,7 +21,7 @@
|
||||||
#include "geometry/vector3.h"
|
#include "geometry/vector3.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
BOOL ConvertToMeshFile(const std::string &meshFilename, const Ms3d *source)
|
BOOL ConvertToMeshFile(const std::string &meshFilename, const Ms3d *source, float scaleFactor)
|
||||||
{
|
{
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,6 @@
|
||||||
|
|
||||||
class Ms3d;
|
class Ms3d;
|
||||||
|
|
||||||
BOOL ConvertToMeshFile(const std::string &meshFilename, const Ms3d *source);
|
BOOL ConvertToMeshFile(const std::string &meshFilename, const Ms3d *source, float scaleFactor);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Reference in a new issue