A newb programmer here
I have a project involving pedestrian simulation
I'm planning to use libpedsim.dll in python with Ctypes but so far I cannot make the functions working
Can anyone point out how to make use of this DLL?
This is the class documentation: http://pedsim.silmaril.org/documentation/libpedsim/latest/classPed_1_1Tscene.html
This is the link for the download: http://pedsim.silmaril.org/download/
I tried to call it this way but it said that the function is not found
from ctypes import *
pedsim = cdll.libpedsim
print pedsim
pedsim.TScene()