From 4786cbfe7cd2854635991569e0e919e91a73bde2 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Fri, 27 Feb 2009 21:30:19 +0000 Subject: [PATCH] *** empty log message *** --- doc/gl2ps.tex | 8 ++++---- gl2ps.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/gl2ps.tex b/doc/gl2ps.tex index 38a69b6..a71485b 100644 --- a/doc/gl2ps.tex +++ b/doc/gl2ps.tex @@ -1,4 +1,4 @@ -% $Id: gl2ps.tex,v 1.226 2007-05-02 20:57:15 geuzaine Exp $ +% $Id: gl2ps.tex,v 1.227 2009-02-27 21:25:56 geuzaine Exp $ % % GL2PS, an OpenGL to PostScript Printing Library % Copyright (C) 1999-2007 Christophe Geuzaine <geuz@geuz.org> @@ -59,7 +59,7 @@ \title{GL2PS: an OpenGL to PostScript printing library} \author{Christophe Geuzaine} -\date{Version 1.3.3, ? ? 2007} +\date{Version 1.3.3, ? ? 2009} \maketitle @@ -999,8 +999,8 @@ seem to be available anymore). \item[1.3.2] (Nov 5, 2006) Fixed bug in polygon offset computation; fixed landscape mode in SVG; fixed potential out-of-bounds array access in stippling pattern parser. -\item[1.3.3] (, 2007) Fixed memory leak in PDF code; added - \dd{gl2psGetOptions}; nicer SVG rendering (crispEdges). +\item[1.3.3] (, 2009) Fixed memory leak in PDF code; added + \dd{gl2psGetOptions}; nicer SVG rendering (crispEdges, font attributes). \end{description} \end{document} diff --git a/gl2ps.c b/gl2ps.c index 92c047e..195e38c 100644 --- a/gl2ps.c +++ b/gl2ps.c @@ -1,4 +1,4 @@ -/* $Id: gl2ps.c,v 1.251 2009-02-27 21:25:08 geuzaine Exp $ */ +/* $Id: gl2ps.c,v 1.252 2009-02-27 21:30:19 geuzaine Exp $ */ /* * GL2PS, an OpenGL to PostScript Printing Library * Copyright (C) 1999-2007 Christophe Geuzaine <geuz@geuz.org> @@ -1772,7 +1772,7 @@ static void gl2psAddPlanesInBspTreeImage(GL2PSprimitive *prim, if((*tree == NULL) && (prim->numverts > 2)){ /* don't cull if transparent - for(i = 0; i < prim->numverts-1; i++) + for(i = 0; i < prim->numverts - 1; i++) if(prim->verts[i].rgba[3] < 1.0F) return; */ head = (GL2PSbsptree2d*)gl2psMalloc(sizeof(GL2PSbsptree2d)); -- GitLab