| 89 | [return: MarshalAs(UnmanagedType.Bool)] |
| 90 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern bool bounds_ray_intersect (Bounds bounds, Ray ray, out Vec3 out_pt); |
| 91 | [return: MarshalAs(UnmanagedType.Bool)] |
| 92 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern bool bounds_point_contains (Bounds bounds, Vec3 pt); |
| 93 | [return: MarshalAs(UnmanagedType.Bool)] |
| 94 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern bool bounds_line_contains (Bounds bounds, Vec3 linePt1, Vec3 linePt2); |
| 95 | [return: MarshalAs(UnmanagedType.Bool)] |