Преглед изворни кода

Update Python structs with missing fields (#5673)

Vincent Fazio пре 1 година
родитељ
комит
91e93578c7
1 измењених фајлова са 6 додато и 0 уклоњено
  1. 6 0
      port/PyAssimp/pyassimp/structs.py

+ 6 - 0
port/PyAssimp/pyassimp/structs.py

@@ -765,6 +765,12 @@ class Mesh(Structure):
             # Method of morphing when animeshes are specified.
             ("mMethod", c_uint),
 
+            # The bounding box.
+            ("mAABB", 2 * Vector3D),
+
+            # Vertex UV stream names. Pointer to array of size AI_MAX_NUMBER_OF_TEXTURECOORDS
+            ("mTextureCoordsNames", POINTER(POINTER(String)))
+
         ]
 
 class Camera(Structure):