| 325 | } |
| 326 | |
| 327 | void LNLIB_NURBSCUR_offset(LN_NurbsCurve_C curve, double offset, LNLIB_ENUMS_OffsetType_C type, LN_NurbsCurve_C* out_curve) |
| 328 | { |
| 329 | LNLib::LN_NurbsCurve result; |
| 330 | NurbsCurve::Offset(FromCAPI(curve), offset, static_cast<OffsetType>(type), result); |
| 331 | *out_curve = ToCAPI(result); |
| 332 | } |
| 333 | |
| 334 | int LNLIB_NURBSCUR_decompose_to_beziers( |
| 335 | LN_NurbsCurve_C curve, |