Fresco/Berlin/modules/Drawing/PostScript DrawingKit.cc,1.29,1.30 DrawingKit.hh,1.16,1.17

Stefan Seefeld <[email protected]> Tue, 27 May 2003 18:13:18 -0500
Newsgroups gmane.comp.video.fresco.cvs
Message-ID <[email protected]>
Update of /cvs/fresco/Fresco/Berlin/modules/Drawing/PostScript
In directory purcel:/tmp/cvs-serv21334/Berlin/modules/Drawing/PostScript

Modified Files:
	DrawingKit.cc DrawingKit.hh 
Log Message:
a new Path type, still to be implemented...

Index: DrawingKit.cc
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/modules/Drawing/PostScript/DrawingKit.cc,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- DrawingKit.cc	2 Mar 2003 15:49:47 -0000	1.29
+++ DrawingKit.cc	27 May 2003 23:12:44 -0000	1.30
@@ -251,6 +251,10 @@
   _os << std::endl;
 }
 
+void PostScript::DrawingKit::draw_new_path(const Fresco::NewPath &path)
+{
+}
+
 void PostScript::DrawingKit::draw_rectangle(const Vertex &lower, const Vertex &upper)
 {
   _os << "%draw_rectangle" << std::endl;

Index: DrawingKit.hh
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/modules/Drawing/PostScript/DrawingKit.hh,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- DrawingKit.hh	18 Feb 2003 07:26:27 -0000	1.16
+++ DrawingKit.hh	27 May 2003 23:12:44 -0000	1.17
@@ -90,6 +90,7 @@
 
   virtual Fresco::Coord resolution(Fresco::Axis) { return 0.283464566929;}
   virtual void draw_path(const Fresco::Path &);
+  virtual void draw_new_path(const Fresco::NewPath &);
 //   virtual void drawPatch(const Fresco::Patch &);
   virtual void draw_rectangle(const Fresco::Vertex &, const Fresco::Vertex &);
   virtual void draw_quadric(const Fresco::DrawingKit::Quadric, Fresco::Coord, Fresco::Coord);