Browse Source

Travis CI: API documentation update at 2016-10-25 19:03:28 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/0acd25e763292f9c9c21c23b7029d0a2a5cb5d6e

Message: Add logarithm function to Math API.

urho3d-travis-ci 9 years ago
parent
commit
d010c1ff2f
4 changed files with 18 additions and 13 deletions
  1. 2 0
      Docs/AngelScriptAPI.h
  2. 13 12
      Docs/LuaScriptAPI.dox
  3. 2 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 2 - 0
Docs/AngelScriptAPI.h

@@ -5352,6 +5352,7 @@ bool Save(File) const;
 bool Save(VectorBuffer&) const;
 bool Save(VectorBuffer&) const;
 bool Save(const String&) const;
 bool Save(const String&) const;
 bool SaveBMP(const String&) const;
 bool SaveBMP(const String&) const;
+bool SaveDDS(const String&) const;
 bool SaveJPG(const String&, int) const;
 bool SaveJPG(const String&, int) const;
 bool SavePNG(const String&) const;
 bool SavePNG(const String&) const;
 bool SaveTGA(const String&) const;
 bool SaveTGA(const String&) const;
@@ -14931,6 +14932,7 @@ bool IsNaN(float);
 bool IsPowerOfTwo(uint);
 bool IsPowerOfTwo(uint);
 String Join(Array<String>&, const String&);
 String Join(Array<String>&, const String&);
 float Lerp(float, float, float);
 float Lerp(float, float, float);
+float Ln(float);
 void MarkNetworkUpdate();
 void MarkNetworkUpdate();
 float Max(float, float);
 float Max(float, float);
 int Max(int, int);
 int Max(int, int);

+ 13 - 12
Docs/LuaScriptAPI.dox

@@ -8384,8 +8384,8 @@ Properties:
 - Renderer* GetRenderer()
 - Renderer* GetRenderer()
 - Time* GetTime()
 - Time* GetTime()
 - UI* GetUI()
 - UI* GetUI()
-- bool HasSubscribedToEvent(Object* sender, const String eventName)
 - bool HasSubscribedToEvent(const String eventName)
 - bool HasSubscribedToEvent(const String eventName)
+- bool HasSubscribedToEvent(Object* sender, const String eventName)
 - float InverseLerp(float lhs, float rhs, float x)
 - float InverseLerp(float lhs, float rhs, float x)
 - bool IsAbsolutePath(const String pathName)
 - bool IsAbsolutePath(const String pathName)
 - bool IsAlpha(unsigned ch)
 - bool IsAlpha(unsigned ch)
@@ -8393,6 +8393,7 @@ Properties:
 - bool IsNaN(float value)
 - bool IsNaN(float value)
 - bool IsPowerOfTwo(unsigned value)
 - bool IsPowerOfTwo(unsigned value)
 - float Lerp(float lhs, float rhs, float t)
 - float Lerp(float lhs, float rhs, float t)
+- float Ln(float x)
 - float Max(float lhs, float rhs)
 - float Max(float lhs, float rhs)
 - int MaxInt(int lhs, int rhs)
 - int MaxInt(int lhs, int rhs)
 - float Min(float lhs, float rhs)
 - float Min(float lhs, float rhs)
@@ -8404,9 +8405,9 @@ Properties:
 - void PrintLine(const String str, bool error = false)
 - void PrintLine(const String str, bool error = false)
 - int Rand()
 - int Rand()
 - float RandStandardNormal()
 - float RandStandardNormal()
+- float Random(float range)
 - float Random()
 - float Random()
 - float Random(float min, float max)
 - float Random(float min, float max)
-- float Random(float range)
 - int RandomInt(int range)
 - int RandomInt(int range)
 - int RandomInt(int min, int max)
 - int RandomInt(int min, int max)
 - float RandomNormal(float meanValue, float variance)
 - float RandomNormal(float meanValue, float variance)
@@ -8425,9 +8426,9 @@ Properties:
 - float Sin(float angle)
 - float Sin(float angle)
 - float SmoothStep(float lhs, float rhs, float t)
 - float SmoothStep(float lhs, float rhs, float t)
 - float Sqrt(float x)
 - float Sqrt(float x)
-- float StableRandom(const Vector2& seed)
-- float StableRandom(const Vector3& seed)
 - float StableRandom(float seed)
 - float StableRandom(float seed)
+- float StableRandom(const Vector3& seed)
+- float StableRandom(const Vector2& seed)
 - void SubscribeToEvent(const String eventName, void* functionOrFunctionName)
 - void SubscribeToEvent(const String eventName, void* functionOrFunctionName)
 - void SubscribeToEvent(void* sender, const String eventName, void* functionOrFunctionName)
 - void SubscribeToEvent(void* sender, const String eventName, void* functionOrFunctionName)
 - float Tan(float angle)
 - float Tan(float angle)
@@ -8456,27 +8457,27 @@ Properties:
 - void UnsubscribeFromEvent(const String eventName)
 - void UnsubscribeFromEvent(const String eventName)
 - void UnsubscribeFromEvents(Object* sender)
 - void UnsubscribeFromEvents(Object* sender)
 - Vector3 VectorCeil(const Vector3& vec)
 - Vector3 VectorCeil(const Vector3& vec)
-- Vector4 VectorCeil(const Vector4& vec)
 - Vector2 VectorCeil(const Vector2& vec)
 - Vector2 VectorCeil(const Vector2& vec)
+- Vector4 VectorCeil(const Vector4& vec)
 - IntVector2 VectorCeilToInt(const Vector2& vec)
 - IntVector2 VectorCeilToInt(const Vector2& vec)
 - Vector4 VectorFloor(const Vector4& vec)
 - Vector4 VectorFloor(const Vector4& vec)
 - Vector2 VectorFloor(const Vector2& vec)
 - Vector2 VectorFloor(const Vector2& vec)
 - Vector3 VectorFloor(const Vector3& vec)
 - Vector3 VectorFloor(const Vector3& vec)
 - IntVector2 VectorFloorToInt(const Vector2& vec)
 - IntVector2 VectorFloorToInt(const Vector2& vec)
-- Vector4 VectorLerp(const Vector4& lhs, const Vector4& rhs, const Vector4& t)
 - Vector2 VectorLerp(const Vector2& lhs, const Vector2& rhs, const Vector2& t)
 - Vector2 VectorLerp(const Vector2& lhs, const Vector2& rhs, const Vector2& t)
+- Vector4 VectorLerp(const Vector4& lhs, const Vector4& rhs, const Vector4& t)
 - Vector3 VectorLerp(const Vector3& lhs, const Vector3& rhs, const Vector3& t)
 - Vector3 VectorLerp(const Vector3& lhs, const Vector3& rhs, const Vector3& t)
-- Vector4 VectorMax(const Vector4& lhs, const Vector4& rhs)
-- Vector2 VectorMax(const Vector2& lhs, const Vector2& rhs)
-- Vector3 VectorMax(const Vector3& lhs, const Vector3& rhs)
 - IntVector2 VectorMax(const IntVector2& lhs, const IntVector2& rhs)
 - IntVector2 VectorMax(const IntVector2& lhs, const IntVector2& rhs)
-- Vector3 VectorMin(const Vector3& lhs, const Vector3& rhs)
+- Vector3 VectorMax(const Vector3& lhs, const Vector3& rhs)
+- Vector2 VectorMax(const Vector2& lhs, const Vector2& rhs)
+- Vector4 VectorMax(const Vector4& lhs, const Vector4& rhs)
+- Vector2 VectorMin(const Vector2& lhs, const Vector2& rhs)
 - Vector4 VectorMin(const Vector4& lhs, const Vector4& rhs)
 - Vector4 VectorMin(const Vector4& lhs, const Vector4& rhs)
+- Vector3 VectorMin(const Vector3& lhs, const Vector3& rhs)
 - IntVector2 VectorMin(const IntVector2& lhs, const IntVector2& rhs)
 - IntVector2 VectorMin(const IntVector2& lhs, const IntVector2& rhs)
-- Vector2 VectorMin(const Vector2& lhs, const Vector2& rhs)
+- Vector3 VectorRound(const Vector3& vec)
 - Vector2 VectorRound(const Vector2& vec)
 - Vector2 VectorRound(const Vector2& vec)
 - Vector4 VectorRound(const Vector4& vec)
 - Vector4 VectorRound(const Vector4& vec)
-- Vector3 VectorRound(const Vector3& vec)
 - IntVector2 VectorRoundToInt(const Vector2& vec)
 - IntVector2 VectorRoundToInt(const Vector2& vec)
 
 
 
 

+ 2 - 0
Docs/ScriptAPI.dox

@@ -7466,6 +7466,7 @@ Methods:
 - bool Save(VectorBuffer&) const
 - bool Save(VectorBuffer&) const
 - bool Save(const String&) const
 - bool Save(const String&) const
 - bool SaveBMP(const String&) const
 - bool SaveBMP(const String&) const
+- bool SaveDDS(const String&) const
 - bool SaveJPG(const String&, int) const
 - bool SaveJPG(const String&, int) const
 - bool SavePNG(const String&) const
 - bool SavePNG(const String&) const
 - bool SaveTGA(const String&) const
 - bool SaveTGA(const String&) const
@@ -15998,6 +15999,7 @@ Properties:
 - bool IsPowerOfTwo(uint)
 - bool IsPowerOfTwo(uint)
 - String Join(String[]&, const String&)
 - String Join(String[]&, const String&)
 - float Lerp(float, float, float)
 - float Lerp(float, float, float)
+- float Ln(float)
 - void MarkNetworkUpdate()
 - void MarkNetworkUpdate()
 - float Max(float, float)
 - float Max(float, float)
 - int Max(int, int)
 - int Max(int, int)

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.26
+0.1.27