(
XYZ point0, XYZ vector0,
XYZ point1, XYZ vector1,
out double param0,
out double param1,
out XYZ intersectPoint)
| 16 | public static partial class LNLibIntersection |
| 17 | { |
| 18 | [DllImport( |
| 19 | LNLIB_CAPI_DLL, |
| 20 | EntryPoint = "LNLIB_INTERSECT_compute_rays", |
| 21 | CallingConvention = CallingConvention.Cdecl)] |
| 22 | public static extern CurveCurveIntersectionType ComputeRays( |
| 23 | XYZ point0, XYZ vector0, |
| 24 | XYZ point1, XYZ vector1, |
| 25 | out double param0, |
| 26 | out double param1, |
| 27 | out XYZ intersectPoint); |
| 28 | |
| 29 | [DllImport( |
| 30 | LNLIB_CAPI_DLL, |
nothing calls this directly
no outgoing calls
no test coverage detected