Skip to content

Commit

Permalink
+ simplify basic VRML export of mesh kernel, + allow to export mesh w…
Browse files Browse the repository at this point in the history
…ith texture via Python
  • Loading branch information
wwmayer committed Jul 11, 2014
1 parent 750a04d commit 3cfab20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Mesh/App/MeshPyImp.cpp
Expand Up @@ -151,7 +151,7 @@ PyObject* MeshPy::write(PyObject *args)
char* Ext=0;
char* ObjName=0;
PyObject* List=0;
if (!PyArg_ParseTuple(args, "s|ss",&Name,&Ext,&ObjName,&PyList_Type,&List))
if (!PyArg_ParseTuple(args, "s|ssO!",&Name,&Ext,&ObjName,&PyList_Type,&List))
return NULL;

MeshCore::MeshIO::Format format = MeshCore::MeshIO::Undefined;
Expand Down

0 comments on commit 3cfab20

Please sign in to comment.