/// <summary> /// Clip with a plane. /// </summary> public void Clip(Urho.Plane plane) { Runtime.ValidateObject(this); Polyhedron_Clip(handle, ref plane); }
internal static extern void Polyhedron_Clip(IntPtr handle, ref Urho.Plane plane);
internal static extern void Camera_SetClipPlane(IntPtr handle, ref Urho.Plane plane);
/// <summary> /// Set custom clipping plane in world space. /// </summary> private void SetClipPlane(Urho.Plane plane) { Runtime.ValidateRefCounted(this); Camera_SetClipPlane(handle, ref plane); }
internal static extern void Camera_SetReflectionPlane(IntPtr handle, ref Urho.Plane plane);