VIP: Volume Image Processing


trigo.h
Go to the documentation of this file.
1/****************************************************************************
2 * PROJECT : V.I.P. Library
3 * MODULE NAME : vip/trigo.h * TYPE : Header
4 * AUTHOR : POUPON F. * CREATION : 31/01/1997
5 * VERSION : 0.1 * REVISION :
6 * LANGUAGE : C++ * EXAMPLE :
7 * DEVICE : Sun SPARC Station 5
8 ****************************************************************************
9 *
10 * DESCRIPTION : Genere des tables de Sinus, Cosinus et Tangentes
11 *
12 ****************************************************************************
13 *
14 * USED MODULES :
15 *
16 ****************************************************************************
17 * REVISIONS : DATE | AUTHOR | DESCRIPTION
18 *--------------------|--------------|---------------------------------------
19 * / / | |
20 ****************************************************************************/
21
22#ifndef VIP_TRIGO_H
23#define VIP_TRIGO_H
24
25#ifdef __cplusplus
26 extern "C" {
27#endif
28
29/*----------------------------------------------------------------------------*/
31 float nb_angle,
32 float mul
33);
34/*----------------------------------------------------------------------------*/
35
36/*----------------------------------------------------------------------------*/
37extern float *VipCreateSinusTable(
38 float nb_angle,
39 float mul
40);
41/*----------------------------------------------------------------------------*/
42
43/*----------------------------------------------------------------------------*/
45 float nb_angle,
46 float mul
47);
48/*----------------------------------------------------------------------------*/
49
50/*----------------------------------------------------------------------------*/
52 float *table
53);
54/*----------------------------------------------------------------------------*/
55
56/*----------------------------------------------------------------------------*/
58 float *table
59);
60/*----------------------------------------------------------------------------*/
61
62/*----------------------------------------------------------------------------*/
64 float *table
65);
66/*----------------------------------------------------------------------------*/
67
68#ifdef __cplusplus
69 }
70#endif
71
72#endif
float * VipCreateSinusTable(float nb_angle, float mul)
float * VipCreateCosinusTable(float nb_angle, float mul)
void VipFreeTangenteTable(float *table)
void VipFreeCosinusTable(float *table)
float * VipCreateTangenteTable(float nb_angle, float mul)
void VipFreeSinusTable(float *table)