Lines Matching full:tdiv
32 Compute the Tdiv as the root of (cubic) equation
33 sqrt(3)/18 · |P2 - 3·C2 + 3·C1 - P1|/2 · Tdiv ^ 3 = prec
34 if Tdiv < 0.5 divide the cubic at Tdiv. First segment [0..Tdiv] can be approximated with by a
36 Repeat from step 2 with the second resulted segment (corresponding to 1-Tdiv)
37 0.5<=Tdiv<1 - simply divide the cubic in two. The two halves can be approximated by the mid-point
39 Tdiv>=1 - the entire cubic can be approximated by the mid-point approximation
117 double tDiv = calcTDiv(cubic, precision, 0);
118 if (tDiv >= 1) {
121 if (tDiv >= 0.5) {
130 double tDiv = calcTDiv(cubic, precision, 0);
131 double parts = ceil(1.0 / tDiv);