/DerelictASSIMP3

A dynamic binding to Assimp3 for the D Programming Language.

Primary LanguageD

DerelictASSIMP3

A dynamic binding to Assimp3 version 3.3 for the D Programming Language.

Please see the sections on Compiling and Linking and The Derelict Loader, in the Derelict documentation, for information on how to build DerelictASSIMP3 and load ASSIMP at run time. In the meantime, here's some sample code.

import derelict.assimp3.assimp;

void main() {
    // Load the Assimp3 library.
    DerelictASSIMP3.load();

    // Now Assimp3 functions can be called.
    ...
}