Skip to content

Commit dbe2321

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 0c9f007 + d407ccf commit dbe2321

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff 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 |

0 commit comments

Comments
 (0)