Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

README 1.6 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. jassimp
  2. -------
  3. Java binding for assimp.
  4. The class model used by jassimp is not a one-to-one mapping of assimps class/
  5. structure model (due to performance considerations). Please read the javadoc
  6. descriptions of AiMesh and AiWrapperProvider.
  7. The jassimp.lwjgl package contains a LWJGL specific wrapper provider and some
  8. application examples using this wrapper
  9. How To Build
  10. ------------
  11. I) native library
  12. II) Java binding
  13. The java library is built using ant. Executing "ant" in the port/jassimp
  14. directory should be sufficient to build the library including docs. You
  15. still need to build the native library separately, see above
  16. The java build is configured to create java 1.6 classes
  17. Limitations
  18. -----------
  19. Not all data imports have been tested yet, especially the countless texture
  20. parameters. If you find bugs please report them.
  21. jassimp supports most of assimps features. Current limitations are
  22. * only importing scenes is supported. There are some methods that allow a
  23. modification of the returned objects, but these should be considered as
  24. work in progress. Full blown export support is planned for a future release
  25. * no support for mesh animations
  26. * no support for embedded textures
  27. * no support for importer configurations
  28. * no support for the custom I/O API of assimp
  29. * some texture related material properties are not exposed via the API but only
  30. accessible by traversing the list of properties. However this limitation is
  31. also present in the c-API ...
  32. License
  33. -------
  34. The license for jassimp is the same as the main Assimp license.