diff --git a/Graphics/CreateFile.cpp b/Graphics/CreateFile.cpp index d5aef962a8d17ea79197f39f44a86159bf283e44..2df138f8f34f6e036d90de0a58130df1e6f1bc58 100644 --- a/Graphics/CreateFile.cpp +++ b/Graphics/CreateFile.cpp @@ -1,4 +1,4 @@ -// $Id: CreateFile.cpp,v 1.38 2003-03-01 22:36:39 geuzaine Exp $ +// $Id: CreateFile.cpp,v 1.39 2003-03-02 05:31:45 geuzaine Exp $ // // Copyright (C) 1997 - 2003 C. Geuzaine, J.-F. Remacle // @@ -204,22 +204,14 @@ void CreateOutputFile(char *name, int format) Msg(GERROR, "Unable to open file '%s'", name); return; } - psformat = (format == FORMAT_PS - || format == FORMAT_PSTEX) ? GL2PS_PS : GL2PS_EPS; - pssort = - (CTX.print.eps_quality == 1) ? GL2PS_SIMPLE_SORT : GL2PS_BSP_SORT; + psformat = (format == FORMAT_PS || format == FORMAT_PSTEX) ? GL2PS_PS : GL2PS_EPS; + pssort = (CTX.print.eps_quality == 1) ? GL2PS_SIMPLE_SORT : GL2PS_BSP_SORT; psoptions = - GL2PS_SIMPLE_LINE_OFFSET | GL2PS_SILENT | (CTX.print. - eps_occlusion_culling ? - GL2PS_OCCLUSION_CULL : 0) | - (CTX.print.eps_best_root ? GL2PS_BEST_ROOT : 0) | (CTX.print. - eps_background ? - GL2PS_DRAW_BACKGROUND - : 0) | (format == - FORMAT_PSTEX - ? - GL2PS_NO_TEXT - : 0) | + GL2PS_SIMPLE_LINE_OFFSET | GL2PS_SILENT | + (CTX.print.eps_occlusion_culling ? GL2PS_OCCLUSION_CULL : 0) | + (CTX.print.eps_best_root ? GL2PS_BEST_ROOT : 0) | + (CTX.print.eps_background ? GL2PS_DRAW_BACKGROUND : 0) | + (format == FORMAT_PSTEX ? GL2PS_NO_TEXT : 0) | (format == FORMAT_EPSTEX ? GL2PS_NO_TEXT : 0); size3d = 0;