| 744 | } |
| 745 | |
| 746 | void xSpline3_Update(xSpline3* spl) |
| 747 | { |
| 748 | if ((u16)spl->type == 4) |
| 749 | { |
| 750 | Interpolate_Bspline(spl->points, spl->bctrl, spl->knot, spl->N + 1); |
| 751 | } |
| 752 | if ((xSpline3*)spl->arcLength != NULL) |
| 753 | { |
| 754 | xSpline3_ArcInit(spl, (u32)spl->arcSample); |
| 755 | } |
| 756 | } |
| 757 | |
| 758 | void xSpline3_Catmullize(xSpline3* spl) |
| 759 | { |
no test coverage detected