Browse Source

Travis CI: API documentation update at 2017-08-22 18:30:11 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/27141fe66b056b9e2e022bcc6b47f934ac22ebe6

Message: Add contributor.

urho3d-travis-ci 8 years ago
parent
commit
0ffd291638
4 changed files with 10 additions and 1 deletions
  1. 3 0
      Docs/AngelScriptAPI.h
  2. 4 0
      Docs/LuaScriptAPI.dox
  3. 2 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 3 - 0
Docs/AngelScriptAPI.h

@@ -5907,9 +5907,12 @@ public:
 IntRect();
 IntRect(const IntRect&in);
 IntRect(int, int, int, int);
+IntRect(const IntVector2&in, const IntVector2&in);
 IntRect(int[]&inout);
 // Methods:
+int Clip(const IntRect&);
 Intersection IsInside(const IntVector2&) const;
+int Merge(const IntRect&);
 
 // Properties:
 int bottom;

+ 4 - 0
Docs/LuaScriptAPI.dox

@@ -2991,12 +2991,16 @@ Methods:
 - IntRect* new()
 - IntRect(int left, int top, int right, int bottom) (GC)
 - IntRect* new(int left, int top, int right, int bottom)
+- IntRect(const IntVector2& min, const IntVector2& max) (GC)
+- IntRect* new(const IntVector2& min, const IntVector2& max)
 - void delete()
 - bool operator==(const IntRect& rhs) const
 - IntVector2 Size() const
 - int Width() const
 - int Height() const
 - Intersection IsInside(const IntVector2& point) const
+- void Clip(const IntRect& rect)
+- void Merge(const IntRect& rect)
 
 Properties:
 

+ 2 - 0
Docs/ScriptAPI.dox

@@ -7904,7 +7904,9 @@ Properties:
 
 Methods:
 
+- int Clip(const IntRect&)
 - Intersection IsInside(const IntVector2&) const
+- int Merge(const IntRect&)
 
 Properties:
 

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.88
+0.1.89