| 151 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void mesh_set_draw_inds (IntPtr mesh, int index_count); |
| 152 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void mesh_set_bounds (IntPtr mesh, in Bounds bounds); |
| 153 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern Bounds mesh_get_bounds (IntPtr mesh); |
| 154 | [return: MarshalAs(UnmanagedType.Bool)] |
| 155 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern bool mesh_ray_intersect (IntPtr mesh, Ray model_space_ray, out Ray out_pt, IntPtr out_start_inds, Cull cull_mode); |
| 156 | [return: MarshalAs(UnmanagedType.Bool)] |