| 606 | } |
| 607 | |
| 608 | F32 xSpline3_EvalArcApprox(xSpline3* spl, F32 s, U32 deriv, xVec3* o) |
| 609 | { |
| 610 | if (spl->arcLength != NULL) |
| 611 | { |
| 612 | return ArcEvalIterate(spl, s, deriv, o, 0); |
| 613 | } |
| 614 | else |
| 615 | { |
| 616 | xSpline3_EvalSeg(spl, s, deriv, o); |
| 617 | } |
| 618 | return s; |
| 619 | } |
| 620 | |
| 621 | void xSpline3_ArcInit(xSpline3* spl, U32 sample) |
| 622 | { |
no test coverage detected