(
int span_index,
int degree,
[In] double[] knot_vector,
int knot_vector_count,
double param_t)
| 87 | [Out] double[] out_derivatives); |
| 88 | |
| 89 | [DllImport(LNLIB_CAPI_DLL, CallingConvention = CallingConvention.Cdecl, EntryPoint = "LNLIB_POLY_one_basis_function")] |
| 90 | public static extern double OneBasisFunction( |
| 91 | int span_index, |
| 92 | int degree, |
| 93 | [In] double[] knot_vector, |
| 94 | int knot_vector_count, |
| 95 | double param_t); |
| 96 | |
| 97 | [DllImport(LNLIB_CAPI_DLL, CallingConvention = CallingConvention.Cdecl, EntryPoint = "LNLIB_POLY_one_basis_function_derivative")] |
| 98 | public static extern void OneBasisFunctionDerivative( |
nothing calls this directly
no outgoing calls
no test coverage detected