(
XYZ basis_x,
XYZ basis_y,
XYZ basis_z,
XYZ origin)
| 27 | public static extern Matrix4d Create(); |
| 28 | |
| 29 | [DllImport(LNLIB_CAPI_DLL, CallingConvention = CallingConvention.Cdecl, EntryPoint = "LNLIB_MATRIX_create_from_xyz")] |
| 30 | public static extern Matrix4d CreateFromXYZ( |
| 31 | XYZ basis_x, |
| 32 | XYZ basis_y, |
| 33 | XYZ basis_z, |
| 34 | XYZ origin); |
| 35 | |
| 36 | [DllImport(LNLIB_CAPI_DLL, CallingConvention = CallingConvention.Cdecl, EntryPoint = "LNLIB_MATRIX_create_reflection")] |
| 37 | public static extern Matrix4d CreateReflection( |
nothing calls this directly
no outgoing calls
no test coverage detected