Aggiunte macro sin/cos/atan per C++ Builder
This commit is contained in:
parent
c1b220e756
commit
14a1c4c1e7
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.17 2004/05/10 13:00:14 ganovelli
|
||||||
|
limits function cancelled
|
||||||
|
|
||||||
Revision 1.16 2004/05/03 08:38:08 ganovelli
|
Revision 1.16 2004/05/03 08:38:08 ganovelli
|
||||||
correction on templates
|
correction on templates
|
||||||
|
|
||||||
|
@ -83,6 +86,11 @@ Edited Comments and GPL license
|
||||||
#ifdef __BORLANDC__
|
#ifdef __BORLANDC__
|
||||||
float sqrtf (float v) {return sqrt(v);}
|
float sqrtf (float v) {return sqrt(v);}
|
||||||
float fabsf (float v) {return fabs(v);}
|
float fabsf (float v) {return fabs(v);}
|
||||||
|
float cosf (float v) {return cos(v);}
|
||||||
|
float sinf (float v) {return sin(v);}
|
||||||
|
float acosf (float v) {return acos(v);}
|
||||||
|
float asinf (float v) {return asin(v);}
|
||||||
|
float atan2f (float v0, float v1) {return atan2(v0,v1);}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace vcg {
|
namespace vcg {
|
||||||
|
|
Loading…
Reference in New Issue