(
XYZ start,
XYZ end,
XYZ point,
out XYZ project_point)
| 22 | XYZ point); |
| 23 | |
| 24 | [DllImport(LNLIB_CAPI_DLL, CallingConvention = CallingConvention.Cdecl, EntryPoint = "LNLIB_PROJ_point_to_line")] |
| 25 | public static extern int PointToLine( |
| 26 | XYZ start, |
| 27 | XYZ end, |
| 28 | XYZ point, |
| 29 | out XYZ project_point); |
| 30 | |
| 31 | [DllImport(LNLIB_CAPI_DLL, CallingConvention = CallingConvention.Cdecl, EntryPoint = "LNLIB_PROJ_stereographic")] |
| 32 | public static extern XYZ Stereographic( |
nothing calls this directly
no outgoing calls
no test coverage detected