11 lines
424 B
C
11 lines
424 B
C
|
// Copyright (c) 2007 Lionel Moisan <Lionel.Moisan@parisdescartes.fr>
|
||
|
|
||
|
#include "library.h"
|
||
|
#include <vector>
|
||
|
using namespace std;
|
||
|
|
||
|
|
||
|
/*void frot(float *in, float *out, int nx, int ny, int *nx_out, int *ny_out, float *a, float *b, char *k_flag)*/
|
||
|
//void frot(float *, float (*)[], int, int, int *, int *, float *, float *, char *);
|
||
|
void frot(vector<float>&, vector<float>&, int, int, int *, int *, float *, float *, char *);
|