home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / oct93 / graphics / graphtal.lha / Graphtal / ExampleDevice.C < prev    next >
C/C++ Source or Header  |  1992-11-17  |  2KB  |  69 lines

  1. /*
  2.  * ExampleDevice.C - example device driver.
  3.  *
  4.  * Copyright (C) 1992, Christoph Streit (streit@iam.unibe.ch)
  5.  *                     University of Berne, Switzerland
  6.  * All rights reserved.
  7.  *
  8.  * This software may be freely copied, modified, and redistributed
  9.  * provided that this copyright notice is preserved on all copies.
  10.  *
  11.  * You may not distribute this software, in whole or in part, as part of
  12.  * any commercial product without the express consent of the authors.
  13.  *
  14.  * There is no warranty or other guarantee of fitness of this software
  15.  * for any purpose.  It is provided solely "as is".
  16.  *
  17.  */
  18.  
  19. #include <iostream.h>
  20. #include "ExampleDevice.h"
  21. #include "Polygon.h"
  22.  
  23. //___________________________________________________________ ExampleDevice
  24.  
  25. ExampleDevice::ExampleDevice()
  26. {}
  27.  
  28. void ExampleDevice::begin()
  29. {
  30.   cout << "Begin graphics\n";
  31. }
  32.  
  33. void ExampleDevice::end(const BoundingBox&)
  34.   cout << "End graphics\n";
  35.   cout.flush();
  36. }
  37.  
  38. void ExampleDevice::cylinder(const Vector& p1, const Vector& p2, real r)
  39.   if (definingMacro) 
  40.     return;
  41.   cout << "Cylinder " << p1 << p2 << ' ' << r << '\n';
  42. }
  43.  
  44. void ExampleDevice::cone(const Vector& p1, real r1, const Vector& p2, real r2)
  45.   if (definingMacro) 
  46.     return;
  47.   cout << "Cone " << p1 << ' ' << r1 << ' ' << p2 << " " << r2 << '\n';
  48. }
  49.  
  50. void ExampleDevice::sphere(const Vector& p, real r)
  51.   if (definingMacro) 
  52.     return;
  53.   cout << "Sphere " << r << ' ' << p << "\n";
  54. }
  55.  
  56. void ExampleDevice::polygon(Polygon* p)
  57.   if (definingMacro) 
  58.     return;
  59.   cout << "Poly\n";
  60.   for (register long i=0; i<p->numVertices(); i++)
  61.     cout << p->vertex(i) << '\n';
  62. }
  63.  
  64.