mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-02 19:41:53 +02:00
52 lines
996 B
C
52 lines
996 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, const int m[6])
|
|
{
|
|
return x * m[1] + y * m[2];
|
|
}
|
|
|
|
|
|
static inline int myr(int x, int y, const int m[6])
|
|
{
|
|
return x * m[4] + y * m[5];
|
|
}
|
|
|
|
|
|
static inline int mx(int x, int y, const int m[6])
|
|
{
|
|
return m[0] + mxr(x, y, m);
|
|
}
|
|
|
|
|
|
static inline int my(int x, int y, const int m[6])
|
|
{
|
|
return m[3] + myr(x, y, m);
|
|
}
|
|
|
|
|
|
unsigned matrix_to_angle(const int m[6]);
|
|
bool matrix_is_mirrored(const int m[6]);
|
|
int angle_add(int a, int b);
|
|
|
|
int rx(int x, int y, int rot);
|
|
int ry(int x, int y, int rot);
|
|
|
|
#endif /* !MISC_H */
|