https://github.com/gnimuc/assimp.jl
Julia language binding for assimp
https://github.com/gnimuc/assimp.jl
assimp bindings julia
Last synced: 10 days ago
JSON representation
Julia language binding for assimp
- Host: GitHub
- URL: https://github.com/gnimuc/assimp.jl
- Owner: Gnimuc
- License: mit
- Created: 2019-06-03T12:01:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-04T18:09:05.000Z (almost 2 years ago)
- Last Synced: 2025-06-22T19:08:52.934Z (10 days ago)
- Topics: assimp, bindings, julia
- Language: Julia
- Homepage: https://github.com/assimp/assimp
- Size: 55.7 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Assimp


[](https://codecov.io/gh/Gnimuc/Assimp.jl)## Installation
```
pkg> add Assimp
```## Quick start
```
using Assimp.LibAssimp# load asset
scene = aiImportFile("/your/file/path/xxx.glb",
aiProcess_CalcTangentSpace |
aiProcess_Triangulate |
aiProcess_JoinIdenticalVertices |
aiProcess_SortByPType)
if scene == C_NULL
@error aiGetErrorString() |> unsafe_string
end# do something
# clean up
aiReleaseImport(scene)
```