- removed another dead function.

This commit is contained in:
Christoph Oelckers 2022-09-09 00:09:35 +02:00
parent e15a89fc70
commit 8f94b337ac

View file

@ -235,13 +235,6 @@ constexpr int PIXZ(int value)
}
// two vectors
// can determin direction
constexpr int DOT_PRODUCT_2D(int x1, int y1, int x2, int y2)
{
return (MulScale((x1), (x2), 16) + MulScale((y1), (y2), 16));
}
constexpr int SEC(int value)
{
return ((value) * 120);