(double u, double v)
| 22 | public static partial class LNLibUV |
| 23 | { |
| 24 | [DllImport(LNLIB_CAPI_DLL, CallingConvention = CallingConvention.Cdecl, EntryPoint = "LNLIB_UVreate")] |
| 25 | public static extern UV Create(double u, double v); |
| 26 | |
| 27 | [DllImport(LNLIB_CAPI_DLL, CallingConvention = CallingConvention.Cdecl, EntryPoint = "LNLIB_UV_get_u")] |
| 28 | public static extern double GetU(UV uv); |
nothing calls this directly
no outgoing calls
no test coverage detected