(
XYZ origin,
XYZ direction,
XYZ point)
| 16 | public static partial class LNLibProjection |
| 17 | { |
| 18 | [DllImport(LNLIB_CAPI_DLL, CallingConvention = CallingConvention.Cdecl, EntryPoint = "LNLIB_PROJ_point_to_ray")] |
| 19 | public static extern XYZ PointToRay( |
| 20 | XYZ origin, |
| 21 | XYZ direction, |
| 22 | XYZ point); |
| 23 | |
| 24 | [DllImport(LNLIB_CAPI_DLL, CallingConvention = CallingConvention.Cdecl, EntryPoint = "LNLIB_PROJ_point_to_line")] |
| 25 | public static extern int PointToLine( |
nothing calls this directly
no outgoing calls
no test coverage detected