Go to the source code of this file.
◆ close_to_linear()
static bool close_to_linear |
( |
double |
A, |
|
|
double |
B |
|
) |
| |
|
static |
Definition at line 37 of file SkQuads.cpp.
37 {
39
41 }
42
43
44 return true;
45}
SIN Vec< N, float > abs(const Vec< N, float > &x)
◆ solve_linear()
static int solve_linear |
( |
const double |
M, |
|
|
const double |
B, |
|
|
double |
solution[2] |
|
) |
| |
|
static |
Definition at line 18 of file SkQuads.cpp.
18 {
20 solution[0] = 0;
22 return 1;
23 }
24 return 0;
25 }
28 return 0;
29 }
30 return 1;
31}
bool sk_double_nearly_zero(double a)
SINT bool isfinite(const Vec< N, T > &v)
◆ zero_if_tiny()
static double zero_if_tiny |
( |
double |
x | ) |
|
|
static |