From 6587130e9c4f51491ab8aa40f70617435085a047 Mon Sep 17 00:00:00 2001 From: aramis_acg Date: Sun, 27 Feb 2011 17:40:07 +0000 Subject: [PATCH] # fix dxf face order (and the normals, respectively). git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@909 67173fc5-114c-0410-ac8e-9d2fd5bffc1f --- code/DXFLoader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/DXFLoader.cpp b/code/DXFLoader.cpp index 59ba41ac1..e27d4e272 100644 --- a/code/DXFLoader.cpp +++ b/code/DXFLoader.cpp @@ -188,8 +188,8 @@ void DXFImporter::InternReadFile( const std::string& pFile, ConvertMeshes(pScene,output); // flip winding order to be ccw - FlipWindingOrderProcess flipper; - flipper.Execute(pScene); + //FlipWindingOrderProcess flipper; + //flipper.Execute(pScene); // --- everything destructs automatically --- }