~ubuntu-branches/ubuntu/quantal/texmacs/quantal

« back to all changes in this revision

Viewing changes to src/Graphics/Renderer/printer.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2010-04-23 07:09:40 UTC
  • mfrom: (4.1.8 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100423070940-72mjdmdepfgrvo8f
Tags: 1:1.0.7.4-2
Re-upload, former upload failed with wrong diff.gz perhaps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include "iterator.hpp"
19
19
#include "merge_sort.hpp"
20
20
#include "scheme.hpp"
 
21
#include "image_files.hpp"
21
22
 
22
23
string PS_CLIP_PUSH ("gsave");
23
24
string PS_CLIP_POP ("grestore");
665
666
 
666
667
void
667
668
printer_rep::polygon (array<SI> x, array<SI> y, bool convex) {
 
669
  (void) convex;
668
670
  int i, n= N(x);
669
671
  if ((N(y) != n) || (n<1)) return;
670
672
  print (x[0], y[0]);