Selaa lähdekoodia

remove translib headers

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@49957 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 13 vuotta sitten
vanhempi
commit
a18af40a5f
2 muutettua tiedostoa jossa 0 lisäystä ja 37 poistoa
  1. 0 22
      include/defs/transform.h
  2. 0 15
      include/transform.h

+ 0 - 22
include/defs/transform.h

@@ -1,22 +0,0 @@
-#ifndef GRASS_TRANSFORMDEFS_H
-#define GRASS_TRANSFORMDEFS_H
-
-/* inverse.c */
-int inverse(double[DIM_matrix][DIM_matrix]);
-int isnull(double[DIM_matrix][DIM_matrix]);
-
-/* m_mult.c */
-int m_mult(double[DIM_matrix][DIM_matrix], double *, double *);
-
-/* transform.c */
-int compute_transformation_coef(double *, double *, double *, double *, int *,
-				int);
-int transform_a_into_b(double, double, double *, double *);
-int transform_b_into_a(double, double, double *, double *);
-int residuals_a_predicts_b(double *, double *, double *, double *, int *, int,
-			   double *, double *);
-int residuals_b_predicts_a(double *, double *, double *, double *, int *, int,
-			   double *, double *);
-int print_transform_matrix(void);
-
-#endif

+ 0 - 15
include/transform.h

@@ -1,15 +0,0 @@
-#ifndef GRASS_TRANSFORM_H
-#define GRASS_TRANSFORM_H
-
-/* This is the definition file for the libtrans functions.
-   These are the tools that move data from one coordinate system into
-   another.
- */
-/* to give the size of the multi-dim array parameter is necessary here,
-   because DEC's cc V5.6-079 on Digital UNIX V4.0 (Rev. 878) seems to need it
- */
-#define DIM_matrix 3
-
-#include <grass/defs/transform.h>
-
-#endif