SOR.H 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /****************************************************************************
  2. * sor.h
  3. *
  4. * This module contains all defines, typedefs, and prototypes for SOR.C.
  5. *
  6. * from Persistence of Vision(tm) Ray Tracer
  7. * Copyright 1996,1999 Persistence of Vision Team
  8. *---------------------------------------------------------------------------
  9. * NOTICE: This source code file is provided so that users may experiment
  10. * with enhancements to POV-Ray and to port the software to platforms other
  11. * than those supported by the POV-Ray Team. There are strict rules under
  12. * which you are permitted to use this file. The rules are in the file
  13. * named POVLEGAL.DOC which should be distributed with this file.
  14. * If POVLEGAL.DOC is not available or for more info please contact the POV-Ray
  15. * Team Coordinator by email to team-coord@povray.org or visit us on the web at
  16. * http://www.povray.org. The latest version of POV-Ray may be found at this site.
  17. *
  18. * This program is based on the popular DKB raytracer version 2.12.
  19. * DKBTrace was originally written by David K. Buck.
  20. * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
  21. *
  22. *****************************************************************************/
  23. #ifndef SOR_H
  24. #define SOR_H
  25. #include "bcyl.h"
  26. /*****************************************************************************
  27. * Global preprocessor definitions
  28. ******************************************************************************/
  29. #define SOR_OBJECT (STURM_OK_OBJECT)
  30. /* Generate additional surface of revolution statistics. */
  31. #define SOR_EXTRA_STATS 1
  32. /*****************************************************************************
  33. * Global typedefs
  34. ******************************************************************************/
  35. typedef struct Sor_Struct SOR;
  36. typedef struct Sor_Spline_Entry_Struct SOR_SPLINE_ENTRY;
  37. typedef struct Sor_Spline_Struct SOR_SPLINE;
  38. struct Sor_Spline_Entry_Struct
  39. {
  40. DBL A, B, C, D;
  41. };
  42. struct Sor_Spline_Struct
  43. {
  44. int References;
  45. SOR_SPLINE_ENTRY *Entry;
  46. BCYL *BCyl; /* bounding cylinder. */
  47. };
  48. struct Sor_Struct
  49. {
  50. OBJECT_FIELDS
  51. TRANSFORM *Trans;
  52. int Number;
  53. SOR_SPLINE *Spline; /* List of spline segments */
  54. DBL Height1, Height2; /* Min./Max. height */
  55. DBL Radius1, Radius2; /* Min./Max. radius */
  56. DBL Base_Radius_Squared; /* Radius**2 of the base plane */
  57. DBL Cap_Radius_Squared; /* Radius**2 of the cap plane */
  58. };
  59. /*****************************************************************************
  60. * Global variables
  61. ******************************************************************************/
  62. /*****************************************************************************
  63. * Global functions
  64. ******************************************************************************/
  65. SOR *Create_Sor (void);
  66. void Compute_Sor_BBox (SOR *Sor);
  67. void Compute_Sor (SOR *Sor, UV_VECT *P);
  68. #endif