mirror of
https://github.com/glest/glest-source.git
synced 2025-08-13 11:54:00 +02:00
- added new cmake build option (and fixed bugs from people who added code but did not respect NON streflop define)
This commit is contained in:
@@ -163,8 +163,8 @@ public:
|
||||
c = streflop::cosf(rad),
|
||||
s = streflop::sinf(rad);
|
||||
#else
|
||||
c = scosf(rad),
|
||||
s = ssinf(rad);
|
||||
c = cosf(rad),
|
||||
s = sinf(rad);
|
||||
#endif
|
||||
return Vec2<T>(x*c-y*s,x*s+y*c);
|
||||
}
|
||||
|
Reference in New Issue
Block a user