Небольшие исправления
This commit is contained in:
parent
89dfd7644b
commit
857d79e572
4 changed files with 8 additions and 8 deletions
|
|
@ -492,7 +492,7 @@ int main()
|
|||
|
||||
uni_number number;
|
||||
|
||||
number.fp32 = 2.0f;
|
||||
number.fp32 = 1.0f;
|
||||
|
||||
printf("%x\n", number.si32);
|
||||
|
||||
|
|
|
|||
|
|
@ -67,10 +67,10 @@ extern inline void bgc_complex_subtract_fp32(const BgcComplexFP32* minuend, cons
|
|||
extern inline void bgc_complex_subtract_fp64(const BgcComplexFP64* minuend, const BgcComplexFP64* subtrahend, BgcComplexFP64* difference);
|
||||
|
||||
extern inline void bgc_complex_multiply_by_number_fp32(const BgcComplexFP32* multiplicand, const float multiplier, BgcComplexFP32* product);
|
||||
extern inline void bgc_complex_multiply_fp64(const BgcComplexFP64* multiplicand, const double multiplier, BgcComplexFP64* product);
|
||||
extern inline void bgc_complex_multiply_by_number_fp64(const BgcComplexFP64* multiplicand, const double multiplier, BgcComplexFP64* product);
|
||||
|
||||
extern inline void bgc_complex_divide_by_number_fp32(const BgcComplexFP32* dividend, const float divisor, BgcComplexFP32* quotient);
|
||||
extern inline void bgc_complex_divide_fp64(const BgcComplexFP64* dividend, const double divisor, BgcComplexFP64* quotient);
|
||||
extern inline void bgc_complex_divide_by_number_fp64(const BgcComplexFP64* dividend, const double divisor, BgcComplexFP64* quotient);
|
||||
|
||||
extern inline void bgc_complex_get_mean_of_two_fp32(const BgcComplexFP32* number1, const BgcComplexFP32* number2, BgcComplexFP32* mean);
|
||||
extern inline void bgc_complex_get_mean_of_two_fp64(const BgcComplexFP64* number1, const BgcComplexFP64* number2, BgcComplexFP64* mean);
|
||||
|
|
|
|||
|
|
@ -274,7 +274,7 @@ inline int bgc_matrix3x3_is_singular_fp64(const BgcMatrix3x3FP64* matrix)
|
|||
|
||||
// ================ Is Rotation ================= //
|
||||
|
||||