| 363 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void model_set_bounds (IntPtr model, in Bounds bounds); |
| 364 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Bounds model_get_bounds (IntPtr model); |
| 365 | [return: MarshalAs(UnmanagedType.Bool)] |
| 366 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern bool model_ray_intersect (IntPtr model, Ray model_space_ray, out Ray out_pt, Cull cull_mode); |
| 367 | |
| 368 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void model_step_anim (IntPtr model); |
| 369 | [return: MarshalAs(UnmanagedType.Bool)] |