Browse Source

Travis CI: API documentation update at 2014-03-09 01:50:10 UTC.
[ci package]

urho3d-travis-ci 11 years ago
parent
commit
db81e0ea61
3 changed files with 17 additions and 2 deletions
  1. 5 0
      Docs/AngelScriptAPI.h
  2. 7 2
      Docs/LuaScriptAPI.dox
  3. 5 0
      Docs/ScriptAPI.dox

+ 5 - 0
Docs/AngelScriptAPI.h

@@ -4671,6 +4671,7 @@ void FromEulerAngles(float, float, float);
 void FromLookRotation(const Vector3&, const Vector3&);
 void FromRotationTo(const Vector3&, const Vector3&);
 Quaternion Inverse() const;
+bool IsNaN() const;
 Quaternion Nlerp(Quaternion, float, bool) const;
 void Normalize();
 Quaternion Normalized() const;
@@ -8099,6 +8100,7 @@ class Vector2
 float AbsDotProduct(const Vector2&) const;
 float DotProduct(const Vector2&) const;
 bool Equals(const Vector2&) const;
+bool IsNaN() const;
 Vector2 Lerp(const Vector2&, float) const;
 void Normalize();
 Vector2 Normalized() const;
@@ -8123,6 +8125,7 @@ float Angle(const Vector3&) const;
 Vector3 CrossProduct(const Vector3&) const;
 float DotProduct(const Vector3&) const;
 bool Equals(const Vector3&) const;
+bool IsNaN() const;
 Vector3 Lerp(const Vector3&, float) const;
 void Normalize();
 Vector3 Normalized() const;
@@ -8146,6 +8149,7 @@ class Vector4
 float AbsDotProduct(const Vector4&) const;
 float DotProduct(const Vector4&) const;
 bool Equals(const Vector4&) const;
+bool IsNaN() const;
 Vector4 Lerp(const Vector4&, float) const;
 String ToString() const;
 
@@ -9230,6 +9234,7 @@ String GetTextureUnitName(TextureUnit);
 bool IsAbsolutePath(const String&);
 bool IsAlpha(uint);
 bool IsDigit(uint);
+bool IsNaN(float);
 String Join(Array<String>&, const String&);
 float Lerp(float, float, float);
 void MarkNetworkUpdate();

+ 7 - 2
Docs/LuaScriptAPI.dox

@@ -2881,6 +2881,7 @@ Methods:
 - float LengthSquared() const
 - float DotProduct(const Quaternion& rhs) const
 - bool Equals(const Quaternion& rhs) const
+- bool IsNaN() const
 - Quaternion Conjugate() const
 - Vector3 EulerAngles() const
 - float YawAngle() const
@@ -4782,6 +4783,7 @@ Methods:
 - Vector2 Abs() const
 - Vector2 Lerp(const Vector2& rhs, float t) const
 - bool Equals(const Vector2& rhs) const
+- bool IsNaN() const
 - Vector2 Normalized() const
 - String ToString() const
 
@@ -4827,6 +4829,7 @@ Methods:
 - Vector3 Abs() const
 - Vector3 Lerp(const Vector3& rhs, float t) const
 - bool Equals(const Vector3& rhs) const
+- bool IsNaN() const
 - float Angle(const Vector3& rhs) const
 - Vector3 Normalized() const
 - String ToString() const
@@ -4873,6 +4876,7 @@ Methods:
 - Vector4 Abs() const
 - Vector4 Lerp(const Vector4& rhs, float t) const
 - bool Equals(const Vector4& rhs) const
+- bool IsNaN() const
 - String ToString() const
 
 Properties:
@@ -5722,6 +5726,7 @@ Properties:
 - bool IsAbsolutePath(const String pathName)
 - bool IsAlpha(unsigned ch)
 - bool IsDigit(unsigned ch)
+- bool IsNaN(float value)
 - float Lerp(float lhs, float rhs, float t)
 - float Max(float lhs, float rhs)
 - float Min(float lhs, float rhs)
@@ -5729,9 +5734,9 @@ Properties:
 - void PrintLine(const String str, bool error = false)
 - int Rand()
 - float RandStandardNormal()
+- float Random(float range)
 - float Random()
 - float Random(float min, float max)
-- float Random(float range)
 - int RandomInt(int range)
 - int RandomInt(int min, int max)
 - float RandomNormal(float meanValue, float variance)
@@ -5761,8 +5766,8 @@ Properties:
 - Vector3 ToVector3(const String source)
 - Vector4 ToVector4(const String source, bool allowMissingCoords = false)
 - void UnsubscribeFromAllEvents()
-- void UnsubscribeFromEvent(const String eventName, const String functionName = String::EMPTY)
 - void UnsubscribeFromEvent(void* sender, const String eventName, const String functionName = String::EMPTY)
+- void UnsubscribeFromEvent(const String eventName, const String functionName = String::EMPTY)
 - void UnsubscribeFromEvents(void* sender)
 
 

+ 5 - 0
Docs/ScriptAPI.dox

@@ -3905,6 +3905,7 @@ Methods:
 - void FromLookRotation(const Vector3&, const Vector3&)
 - void FromRotationTo(const Vector3&, const Vector3&)
 - Quaternion Inverse() const
+- bool IsNaN() const
 - Quaternion Nlerp(Quaternion, float, bool) const
 - void Normalize()
 - Quaternion Normalized() const
@@ -6759,6 +6760,7 @@ Methods:
 - float AbsDotProduct(const Vector2&) const
 - float DotProduct(const Vector2&) const
 - bool Equals(const Vector2&) const
+- bool IsNaN() const
 - Vector2 Lerp(const Vector2&, float) const
 - void Normalize()
 - Vector2 Normalized() const
@@ -6782,6 +6784,7 @@ Methods:
 - Vector3 CrossProduct(const Vector3&) const
 - float DotProduct(const Vector3&) const
 - bool Equals(const Vector3&) const
+- bool IsNaN() const
 - Vector3 Lerp(const Vector3&, float) const
 - void Normalize()
 - Vector3 Normalized() const
@@ -6804,6 +6807,7 @@ Methods:
 - float AbsDotProduct(const Vector4&) const
 - float DotProduct(const Vector4&) const
 - bool Equals(const Vector4&) const
+- bool IsNaN() const
 - Vector4 Lerp(const Vector4&, float) const
 - String ToString() const
 
@@ -7799,6 +7803,7 @@ Properties:
 - bool IsAbsolutePath(const String&)
 - bool IsAlpha(uint)
 - bool IsDigit(uint)
+- bool IsNaN(float)
 - String Join(String[]&, const String&)
 - float Lerp(float, float, float)
 - void MarkNetworkUpdate()