mirror of
git://projects.qi-hardware.com/cae-tools.git
synced 2025-01-09 01:40:15 +02:00
poly2d/p2d_attrib.c (angle_3): put spaces around operators
This commit is contained in:
parent
6084b52c15
commit
de7df0b41c
@ -39,7 +39,7 @@ static double angle_3(const struct v2d *a, const struct v2d *b,
|
|||||||
|
|
||||||
angle = acos((ax * bx + ay * by) / aa / bb) / M_PI * 180.0;
|
angle = acos((ax * bx + ay * by) / aa / bb) / M_PI * 180.0;
|
||||||
|
|
||||||
return (ax*by-ay*bx) >= 0 ? angle : -angle;
|
return ax * by - ay * bx >= 0 ? angle : -angle;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user