Artifact 27790c3ee35ffef6d53f83e49d7469a84b5138dd:
- File c/geometry.h — part of check-in [e1e8d27e37] at 2010-11-19 19:42:12 on branch ak-experimental — Separated the geometry support code into core linear algebra and actual geometry functions. Updated all users. (user: andreask size: 529) [more...]
#ifndef CRIMP_GEOMETRY_H #define CRIMP_GEOMETRY_H /* * CRIMP :: Declarations for the functions handling points, vectors, * and matrices. * (C) 2010. */ #include <image.h> /* * API :: Core. */ extern void crimp_geo_warp_point (crimp_image* matrix, double* x, double* y); extern crimp_image* crimp_geo_warp_init (crimp_image* input, crimp_image* forward, int* origx, int* origy); /* * Local Variables: * mode: c * c-basic-offset: 4 * fill-column: 78 * End: */ #endif /* CRIMP_GEOMETRY_H */