File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,25 @@ This port is being written trying to stick as much as possible close to the C ve
77- reduce any future maintenance to keep it up with the C version
88- reduce any possible difference for peoples used to dev/work with Assimp
99
10+ ### Code ###
11+ A small example how to load files:
12+ - for java users:
13+ ``` java
14+ AiScene scene = new Importer (). readFile(" test/resources/models/OBJ/box.obj" );
15+ ```
16+ - for kotlin users:
17+ ``` kotlin
18+ val scene = Importer ().readFile(" test/resources/models/OBJ/box.obj" )
19+ ```
20+
21+
1022#Supported import formats at the moment:
1123
1224| Format | status | % |
1325| ------------- | :---------------:| -----|
14- | STL ascii | done,` .stl ` ext | 90 |
15- | STL binary | to test,` .stl ` ext| 80 |
26+ | STL ascii | done (only ` .stl ` ext) | 90 |
27+ | STL binary | done (only ` .stl ` ext)| 90 |
28+ | Obj Wavefront | done (only ` .obj ` ext without external material)| 80 |
1629| Wavefront | to implement | 0 |
1730| Ply | to implement | 0 |
1831| Collada | to implement | 0 |
You can’t perform that action at this time.
0 commit comments