From b9bfac0418c30e969b3052953e63fbced29ccfd4 Mon Sep 17 00:00:00 2001 From: mnml_ Date: Sun, 11 May 2025 21:11:54 +0200 Subject: [PATCH] add missing constants (#6116) Co-authored-by: Kim Kulling --- port/PyAssimp/pyassimp/postprocess.py | 52 +++++++++++++++++++++------ 1 file changed, 41 insertions(+), 11 deletions(-) diff --git a/port/PyAssimp/pyassimp/postprocess.py b/port/PyAssimp/pyassimp/postprocess.py index ae6281a94..3c1ae976e 100644 --- a/port/PyAssimp/pyassimp/postprocess.py +++ b/port/PyAssimp/pyassimp/postprocess.py @@ -40,17 +40,7 @@ aiProcess_MakeLeftHanded = 0x4 # # By default the imported mesh data might contain faces with more than 3 # indices. For rendering you'll usually want all faces to be triangles. -# This post processing step splits up faces with more than 3 indices into -# triangles. Line and point primitives are #not# modified! If you want -# 'triangles only' with no other kinds of primitives, try the following -# solution: -#