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

Function LNLIB_KV_is_uniform

dotnet/CAPI/src/KnotVectorUtils_CAPI.cpp:38–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38int LNLIB_KV_is_uniform(
39 const double* knot_vector,
40 int knot_vector_count)
41{
42 std::vector<double> kv(knot_vector, knot_vector + knot_vector_count);
43 return LNLib::KnotVectorUtils::IsUniform(kv) ? 1 : 0;
44}
45
46void LNLIB_KV_get_knot_multiplicity_map(
47 const double* knot_vector,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected