Skip to content
Snippets Groups Projects
Select Git revision
  • 945974a262edab084c9fefc9fb4f148f8c4443da
  • master default
  • cgnsUnstructured
  • partitioning
  • poppler
  • HighOrderBLCurving
  • gmsh_3_0_4
  • gmsh_3_0_3
  • gmsh_3_0_2
  • gmsh_3_0_1
  • gmsh_3_0_0
  • gmsh_2_16_0
  • gmsh_2_15_0
  • gmsh_2_14_1
  • gmsh_2_14_0
  • gmsh_2_13_2
  • gmsh_2_13_1
  • gmsh_2_12_0
  • gmsh_2_11_0
  • gmsh_2_10_1
  • gmsh_2_10_0
  • gmsh_2_9_3
  • gmsh_2_9_2
  • gmsh_2_9_1
  • gmsh_2_9_0
  • gmsh_2_8_6
26 results

configure

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    gl2ps.c 179.01 KiB
    /* $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>
     *
     * This program is free software; you can redistribute it and/or
     * modify it under the terms of either:
     *
     * a) the GNU Library General Public License as published by the Free
     * Software Foundation, either version 2 of the License, or (at your
     * option) any later version; or
     *
     * b) the GL2PS License as published by Christophe Geuzaine, either
     * version 2 of the License, or (at your option) any later version.
     *
     * This program is distributed in the hope that it will be useful, but
     * WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
     * the GNU Library General Public License or the GL2PS License for
     * more details.
     *
     * You should have received a copy of the GNU Library General Public
     * License along with this library in the file named "COPYING.LGPL";
     * if not, write to the Free Software Foundation, Inc., 675 Mass Ave,
     * Cambridge, MA 02139, USA.
     *
     * You should have received a copy of the GL2PS License with this
     * library in the file named "COPYING.GL2PS"; if not, I will be glad
     * to provide one.
     *
     * Contributors:
     *   Michael Sweet <mike@easysw.com>
     *   Marc Ume <marc.ume@digitalgraphics.be>
     *   Jean-Francois Remacle <remacle@gce.ucl.ac.be>
     *   Bart Kaptein <B.L.Kaptein@lumc.nl>
     *   Quy Nguyen-Dai <quy@nguyendai.org>
     *   Sam Buss <sbuss@ucsd.edu>
     *   Shane Hill <Shane.Hill@dsto.defence.gov.au>
     *   Romain Boman <r_boman@yahoo.fr>
     *   Rouben Rostamian <rostamian@umbc.edu>
     *   Diego Santa Cruz <Diego.SantaCruz@epfl.ch>
     *   Shahzad Muzaffar <Shahzad.Muzaffar@cern.ch>
     *   Lassi Tuura <lassi.tuura@cern.ch>
     *   Guy Barrand <barrand@lal.in2p3.fr>
     *   Prabhu Ramachandran <prabhu@aero.iitm.ernet.in>
     *   Micha Bieber <bieber@traits.de>
     *   Olivier Couet <couet@mail.cern.ch>
     *   Shai Ayal <shaiay@gmail.com>
     *   Fabian Wenzel <wenzel@tu-harburg.de>
     *   Ian D. Gay <gay@sfu.ca>
     *   Cosmin Truta <cosmin@cs.toronto.edu>
     *   Baiju Devani <b.devani@gmail.com>
     *   Alexander Danilov <danilov@lanl.gov>
     *
     * For the latest info about gl2ps, see http://www.geuz.org/gl2ps/.
     * Please report all bugs and problems to <gl2ps@geuz.org>.
     */
    
    #include "gl2ps.h"
    
    #include <math.h>
    #include <string.h>
    #include <sys/types.h>
    #include <stdarg.h>
    #include <time.h>
    #include <float.h>
    
    #if defined(GL2PS_HAVE_ZLIB)
    #include <zlib.h>
    #endif