diff options
author | sanine <sanine.not@pm.me> | 2023-02-12 23:53:22 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-02-12 23:53:22 -0600 |
commit | f1fe73d1909a2448a004a88362a1a532d0d4f7c3 (patch) | |
tree | ab37ae3837e2f858de2932bcee9f26e69fab3db1 /libs/assimp/doc/datastructure.xml | |
parent | f567ea1e2798fd3156a416e61f083ea3e6b95719 (diff) |
switch to tinyobj and nanovg from assimp and cairo
Diffstat (limited to 'libs/assimp/doc/datastructure.xml')
-rw-r--r-- | libs/assimp/doc/datastructure.xml | 127 |
1 files changed, 0 insertions, 127 deletions
diff --git a/libs/assimp/doc/datastructure.xml b/libs/assimp/doc/datastructure.xml deleted file mode 100644 index 79fe9e2..0000000 --- a/libs/assimp/doc/datastructure.xml +++ /dev/null @@ -1,127 +0,0 @@ -<importedScene>
- <version name="1.2" /> <smiley code=":-)" />
- <node>
- <name />
- <transformation type="matrix4x4" />
-
- <mesh refid="0" />
- <!--More mesh definitions-->
- <mesh />
-
- <childnode />
- <childnode />
- </node>
-
- <cameras>
- <camera up="0,1,0" lookat="0,0,1" fov="45"/>
- </cameras>
-
- <lights>
- <light diffuse="black" type="spot" phi="5" theta="15"/>
- </lights>
-
- <meshes>
- <mesh id="0">
- <meshheader type="MatID, Vertexcount, Facecount, a.s.o." />
- <vertices>
- <vertex type="xyz" />
-
- <!-- More vertex definitions -->
- <vertex />
- </vertices>
- <texturecoords index="0">
- <texturecoord type="uv" />
- <texturecoord />
- </texturecoords>
- <texturecoords index="..." />
- <vertexcolors index="0">
- <color type="rgba" />
- <color />
- </vertexcolors>
- <vertexcolors index="..." />
- <normals>
- <normal type="xyz" />
-
- <!-- More normal definitions -->
- <normal />
- </normals>
- <tangents>
- <tangent type="xyz" />
-
- <!-- More tangent definitions -->
- <tangent />
- </tangents>
- <bitangents>
- <bitangent type="xyz" />
-
- <!-- More bitanget defiitions... -->
- <bitangent />
- </bitangents>
- <faces>
- <face numIndices="3" indices="p1, p2, p3" />
-
- <!-- More faces -->
- <face />
- </faces>
- <bones>
- <bone>
- <name />
- <offset type="matrix4x4" />
- <weights>
- <weight type="v, w" />
-
- <!-- More weights -->
- <weight />
- </weights>
- </bone>
-
- <!-- More bones -->
- <bone />
- </bones>
- </mesh>
- <!-- More meshes -->
- <mesh id="x" />
- </meshes>
- <anims>
- <anim name="rudern" duration="4500" ticksPerSecond="50">
- <animbone nameOfAnimatedNode="bla">
- <rotation>
- <rotkey time="0" rot="xyzw" />
- <rotkey time="100" rot="xyzw" />
-
- </rotation>
- <translation>
- <transkey time="0" trans="xyz" />
- <transkey time="100" trans="xyz" />
-
- </translation>
- <scaling>
- <scalekey time="0" scale="xyz" />
- <scalekey time="100" scale="xyz" />
-
- </scaling>
- </animbone>
- <animbone nameOfAnimatedNode="blubb">
-
- </animbone>
- </anim>
- <anim />
- </anims>
- <materials>
- <material>
- <param>
- <name/>
- <value/>
- </param>
- </material>
-
- <!-- More material definitions-->
- <material />
- </materials>
- <textures>
- <texture type="width, height, formatHint">
- <data />
- </texture>
- <texture />
- </textures>
-</importedScene>
|