From ea390bad7af9a5bd0021ff87aa4f89eee7f26d50 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Thu, 30 Nov 2006 15:14:29 +0000 Subject: [PATCH] forgot to classify vertex in STL reader --- Geo/GModelIO_Mesh.cpp | 4 ++-- doc/TODO | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Geo/GModelIO_Mesh.cpp b/Geo/GModelIO_Mesh.cpp index 36f0d266f2..e8b391b310 100644 --- a/Geo/GModelIO_Mesh.cpp +++ b/Geo/GModelIO_Mesh.cpp @@ -1,4 +1,4 @@ -// $Id: GModelIO_Mesh.cpp,v 1.3 2006-11-29 03:11:18 geuzaine Exp $ +// $Id: GModelIO_Mesh.cpp,v 1.4 2006-11-30 15:14:29 geuzaine Exp $ // // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // @@ -865,7 +865,7 @@ int GModel::readSTL(const std::string &name, double tolerance) v[j] = *it; } else { - v[j] = new MVertex(x, y, z); + v[j] = new MVertex(x, y, z, face); vertices.insert(v[j]); face->mesh_vertices.push_back(v[j]); } diff --git a/doc/TODO b/doc/TODO index d8eeea95aa..c944acc0b1 100644 --- a/doc/TODO +++ b/doc/TODO @@ -1,4 +1,9 @@ -$Id: TODO,v 1.28 2006-11-30 01:10:24 geuzaine Exp $ +$Id: TODO,v 1.29 2006-11-30 15:14:29 geuzaine Exp $ + +******************************************************************** + +test isSeam() dans le second ordre -- si oui, interpo lineaireemnt + ******************************************************************** -- GitLab