MCPcopy Create free account
hub / github.com/BIMCoderLiang/LNLib / LNLIB_NURBSCUR_offset

Function LNLIB_NURBSCUR_offset

dotnet/CAPI/src/NurbsCurve_CAPI.cpp:327–332  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

325}
326
327void 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
334int LNLIB_NURBSCUR_decompose_to_beziers(
335 LN_NurbsCurve_C curve,

Callers

nothing calls this directly

Calls 2

FromCAPIFunction · 0.70
ToCAPIFunction · 0.70

Tested by

no test coverage detected