Exemplo n.º 1
0
 /// <summary>
 /// Clip with a plane.
 /// </summary>
 public void Clip(Urho.Plane plane)
 {
     Runtime.ValidateObject(this);
     Polyhedron_Clip(handle, ref plane);
 }
Exemplo n.º 2
0
 internal static extern void Polyhedron_Clip(IntPtr handle, ref Urho.Plane plane);
Exemplo n.º 3
0
 internal static extern void Camera_SetClipPlane(IntPtr handle, ref Urho.Plane plane);
Exemplo n.º 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);
 }
Exemplo n.º 5
0
 internal static extern void Camera_SetReflectionPlane(IntPtr handle, ref Urho.Plane plane);