Vector.cpp (pymol-open-source-2.2.0) | : | Vector.cpp (pymol-open-source-2.3.0) | ||
---|---|---|---|---|
skipping to change at line 64 | skipping to change at line 64 | |||
} | } | |||
#ifndef R_SMALL | #ifndef R_SMALL | |||
#define R_SMALL 0.000000001 | #define R_SMALL 0.000000001 | |||
#endif | #endif | |||
#ifndef R_MED | #ifndef R_MED | |||
#define R_MED 0.00001 | #define R_MED 0.00001 | |||
#endif | #endif | |||
#ifndef true | ||||
#define true 1 | ||||
#endif | ||||
#ifndef false | ||||
#define false 0 | ||||
#endif | ||||
#define cPI 3.14159265358979323846 /* pi */ | #define cPI 3.14159265358979323846 /* pi */ | |||
static const float _0 = 0.0F; | static const float _0 = 0.0F; | |||
static const float _1 = 1.0F; | static const float _1 = 1.0F; | |||
static const double _d0 = 0.0; | static const double _d0 = 0.0; | |||
static const double _d1 = 1.0; | static const double _d1 = 1.0; | |||
void mix3f(const float *v1, const float *v2, const float fxn, float *v3) | void mix3f(const float *v1, const float *v2, const float fxn, float *v3) | |||
{ | { | |||
float fxn_1 = 1.0F - fxn; | float fxn_1 = 1.0F - fxn; | |||
End of changes. 1 change blocks. | ||||
8 lines changed or deleted | 0 lines changed or added |