예제 #1
0
 /// <summary>
 /// Define a vertex tangent.
 /// </summary>
 public void DefineTangent(Urho.Vector4 tangent)
 {
     Runtime.ValidateRefCounted(this);
     CustomGeometry_DefineTangent(handle, ref tangent);
 }
예제 #2
0
 internal static extern void CustomGeometry_DefineTangent(IntPtr handle, ref Urho.Vector4 tangent);
예제 #3
0
 /// <summary>
 /// Set clipping plane attribute.
 /// </summary>
 public void SetClipPlaneAttr(Urho.Vector4 value)
 {
     Runtime.ValidateRefCounted(this);
     Camera_SetClipPlaneAttr(handle, ref value);
 }
예제 #4
0
 internal static extern void Camera_SetClipPlaneAttr(IntPtr handle, ref Urho.Vector4 value);
예제 #5
0
파일: XmlElement.cs 프로젝트: sami1971/urho
 /// <summary>
 /// Set a Vector4 attribute.
 /// </summary>
 public bool SetVector4(string name, Urho.Vector4 value)
 {
     Runtime.ValidateObject(this);
     return(XmlElement_SetVector4(handle, name, ref value));
 }
예제 #6
0
파일: XmlElement.cs 프로젝트: sami1971/urho
 internal static extern bool XmlElement_SetVector4(IntPtr handle, string name, ref Urho.Vector4 value);