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

Function LNLIB_KV_get_continuity

dotnet/CAPI/src/KnotVectorUtils_CAPI.cpp:16–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14#include <map>
15
16int LNLIB_KV_get_continuity(
17 int degree,
18 const double* knot_vector,
19 int knot_vector_count,
20 double knot)
21{
22 std::vector<double> kv(knot_vector, knot_vector + knot_vector_count);
23 return LNLib::KnotVectorUtils::GetContinuity(degree, kv, knot);
24}
25
26void LNLIB_KV_rescale(
27 const double* knot_vector,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected