From 35f9517510ef9f8f134806a45ec56572707c6856 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Mon, 3 Jun 2019 22:34:22 +0200 Subject: [PATCH 1/3] Fix dox Fix the assimp.net link --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 19e43a3cb..51d394236 100644 --- a/Readme.md +++ b/Readme.md @@ -125,7 +125,7 @@ Take a look into the https://github.com/assimp/assimp/blob/master/Build.md file. ### Ports ### * [Android](port/AndroidJNI/README.md) * [Python](port/PyAssimp/README.md) -* [.NET](port/AssimpNET/Readme.md) +* [.NET](https://github.com/kebby/assimp-net) * [Pascal](port/AssimpPascal/Readme.md) * [Javascript (Alpha)](https://github.com/makc/assimp2json) * [Unity 3d Plugin](https://www.assetstore.unity3d.com/en/#!/content/91777) From 4d66b332534467af9a5580b8ff67906aa9c6455d Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Mon, 3 Jun 2019 22:36:57 +0200 Subject: [PATCH 2/3] Update Readme.md Fix wrong link --- port/AssimpNET/Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port/AssimpNET/Readme.md b/port/AssimpNET/Readme.md index bcbfebab1..814cab3e0 100644 --- a/port/AssimpNET/Readme.md +++ b/port/AssimpNET/Readme.md @@ -1 +1 @@ -Please check the following git-repo for the source: https://bitbucket.org/Starnick/assimpnet +Please check the following git-repo for the source: https://github.com/kebby/assimp-net From fc06de82c6f9035ad3f01aec80ad41a55bb8914b Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Wed, 12 Jun 2019 20:44:02 +0200 Subject: [PATCH 3/3] Update Readme.md Add more detailed information about the source code structure --- Readme.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 51d394236..52a195a64 100644 --- a/Readme.md +++ b/Readme.md @@ -136,7 +136,7 @@ Take a look into the https://github.com/assimp/assimp/blob/master/Build.md file. [open3mod](https://github.com/acgessler/open3mod) is a powerful 3D model viewer based on Assimp's import and export abilities. #### Repository structure #### -Open Asset Import Library is implemented in C++. The directory structure is: +Open Asset Import Library is implemented in C++. The directory structure looks like: /code Source code /contrib Third-party libraries @@ -149,6 +149,11 @@ Open Asset Import Library is implemented in C++. The directory structure is: /samples A small number of samples to illustrate possible use cases for Assimp +The source code is organized in the following way: + + code/Common The base implementation for importers and the infrastructure + code/PostProcessing The post-processing steps + code/ Implementation for import and export for the format ### Where to get help ### For more information, visit [our website](http://assimp.org/). Or check out the `./doc`- folder, which contains the official documentation in HTML format.