1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-08-25 09:31:11 +03:00
eda-tools/sch2fig/misc.h
2016-07-25 14:59:27 -03:00

49 lines
897 B
C

/*
* misc.h - Helper functions for geometry and attributes
*
* Written 2016 by Werner Almesberger
* Copyright 2016 Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#ifndef MISC_H
#define MISC_H
#include <stdbool.h>
static inline int mxr(int x, int y, int m[6])
{
return x * m[1] + y * m[2];
}
static inline int myr(int x, int y, int m[6])
{
return x * m[4] + y * m[5];
}
static inline int mx(int x, int y, int m[6])
{
return m[0] + mxr(x, y, m);
}
static inline int my(int x, int y, int m[6])
{
return m[3] + myr(x, y, m);
}
unsigned matrix_to_angle(int m[6]);
bool matrix_is_mirrored(int m[6]);
int angle_add(int a, int b);
#endif /* !MISC_H */