Improved some comments
parent
3402cd81c7
commit
ef4e317625
|
@ -370,7 +370,7 @@ def export_blob(scene,
|
||||||
pyassimp.postprocess.aiProcess_OptimizeMeshes)
|
pyassimp.postprocess.aiProcess_OptimizeMeshes)
|
||||||
Returns
|
Returns
|
||||||
---------
|
---------
|
||||||
ExportBlob
|
Pointer to structs.ExportDataBlob
|
||||||
'''
|
'''
|
||||||
from ctypes import pointer
|
from ctypes import pointer
|
||||||
exportBlobPtr = _assimp_lib.export_blob(pointer(scene), file_type.encode("ascii"), processing)
|
exportBlobPtr = _assimp_lib.export_blob(pointer(scene), file_type.encode("ascii"), processing)
|
||||||
|
|
|
@ -999,6 +999,8 @@ class Animation(Structure):
|
||||||
class ExportDataBlob(Structure):
|
class ExportDataBlob(Structure):
|
||||||
"""
|
"""
|
||||||
See 'cexport.h' for details.
|
See 'cexport.h' for details.
|
||||||
|
|
||||||
|
Note that the '_fields_' definition is outside the class to allow the 'next' field to be recursive
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue