home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / oct93 / graphics / graphtal.lha / Graphtal / transform.h < prev    next >
C/C++ Source or Header  |  1992-11-19  |  991b  |  32 lines

  1. /*
  2.  * transform.h
  3.  *
  4.  * Copyright (C) 1992, Christoph Streit (streit@iam.unibe.ch)
  5.  *                     University of Berne, Switzerland
  6.  * Copyright (C) 1989, 1991, Craig E. Kolb
  7.  * All rights reserved.
  8.  *
  9.  * This software may be freely copied, modified, and redistributed
  10.  * provided that this copyright notice is preserved on all copies.
  11.  *
  12.  * You may not distribute this software, in whole or in part, as part of
  13.  * any commercial product without the express consent of the authors.
  14.  *
  15.  * There is no warranty or other guarantee of fitness of this software
  16.  * for any purpose.  It is provided solely "as is".
  17.  *
  18.  */
  19.  
  20. #ifndef Transform_H
  21. # define Transform_H
  22.  
  23. #include "Vector.h"
  24. #include "TransMatrix.h"
  25.  
  26. Vector normalTransform(const Vector&, const TransMatrix&);
  27. Vector vectorTransform(const Vector&, const TransMatrix&);
  28. Vector pointTransform(const Vector&, const TransMatrix&);
  29. TransMatrix coordSystemTransform(const Vector& orig, Vector up, real r, real l);
  30.  
  31. #endif // Transform_H
  32.