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