Program listing for file numerics/src/tools/projectionOnCylinder.h

Program listing for file numerics/src/tools/projectionOnCylinder.h#

 1#ifndef ProjectionOnCylinder_H
 2#define ProjectionOnCylinder_H
 3
 4
 5
 6#include "SiconosConfig.h"
 7
 8#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
 9extern "C" {
10#endif
11
12
13void projectionOnCylinder(double* r, double R);
14
15
16void projectionOnGeneralCylinder(double* r, double R, int dim);
17
18#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
19}
20#endif
21
22#endif