Browse Source

Travis CI: API documentation update at 2014-03-31 22:44:26 UTC.
[ci package]

urho3d-travis-ci 11 years ago
parent
commit
c148392a0e
3 changed files with 73 additions and 1 deletions
  1. 18 0
      Docs/AngelScriptAPI.h
  2. 37 1
      Docs/LuaScriptAPI.dox
  3. 18 0
      Docs/ScriptAPI.dox

+ 18 - 0
Docs/AngelScriptAPI.h

@@ -4560,6 +4560,7 @@ Vector3 Scale() const;
 Matrix3 Scaled(const Vector3&) const;
 void SetScale(const Vector3&);
 void SetScale(float);
+String ToString() const;
 Matrix3 Transpose() const;
 
 // Properties:
@@ -4589,6 +4590,7 @@ void SetScale(float);
 void SetTranslation(const Vector3&);
 Matrix3 ToMatrix3() const;
 Matrix4 ToMatrix4() const;
+String ToString() const;
 Vector3 Translation() const;
 
 // Properties:
@@ -4620,6 +4622,7 @@ void SetScale(const Vector3&);
 void SetScale(float);
 void SetTranslation(const Vector3&);
 Matrix3 ToMatrix3() const;
+String ToString() const;
 Vector3 Translation() const;
 Matrix4 Transpose() const;
 
@@ -8144,6 +8147,9 @@ int ToInt() const;
 IntRect ToIntRect() const;
 IntVector2 ToIntVector2() const;
 String ToLower() const;
+Matrix3 ToMatrix3() const;
+Matrix3x4 ToMatrix3x4() const;
+Matrix4 ToMatrix4() const;
 Quaternion ToQuaternion() const;
 uint ToUInt() const;
 String ToUpper() const;
@@ -9292,6 +9298,9 @@ uint GetUInt() const;
 Array<Variant> GetVariantVector() const;
 const IntRect& GetIntRect() const;
 const IntVector2& GetIntVector2() const;
+const Matrix3& GetMatrix3() const;
+const Matrix3x4& GetMatrix3x4() const;
+const Matrix4& GetMatrix4() const;
 const Quaternion& GetQuaternion() const;
 const ResourceRef& GetResourceRef() const;
 const ResourceRefList& GetResourceRefList() const;
@@ -9885,6 +9894,9 @@ XMLElement GetChild(const String& = String ( )) const;
 Color GetColor(const String&) const;
 float GetFloat(const String&) const;
 int GetInt(const String&) const;
+Matrix3 GetMatrix3(const String&) const;
+Matrix3x4 GetMatrix3x4(const String&) const;
+Matrix4 GetMatrix4(const String&) const;
 XMLElement GetNext(const String& = String ( )) const;
 Quaternion GetQuaternion(const String&) const;
 ResourceRef GetResourceRef() const;
@@ -9915,6 +9927,9 @@ bool SetBoundingBox(const BoundingBox&);
 bool SetColor(const String&, const Color&);
 bool SetFloat(const String&, float);
 bool SetInt(const String&, int);
+bool SetMatrix3(const String&, const Matrix3&);
+bool SetMatrix3x4(const String&, const Matrix3x4&);
+bool SetMatrix4(const String&, const Matrix4&);
 bool SetQuaternion(const String&, const Quaternion&);
 bool SetResourceRef(const String&, const ResourceRef&);
 bool SetResourceRefList(const String&, const ResourceRefList&);
@@ -10442,6 +10457,9 @@ VAR_VARIANTMAP,
 VAR_INTRECT,
 VAR_INTVECTOR2,
 VAR_PTR,
+VAR_MATRIX3,
+VAR_MATRIX3X4,
+VAR_MATRIX4,
 };
 
 enum VerticalAlignment

+ 37 - 1
Docs/LuaScriptAPI.dox

@@ -2378,6 +2378,7 @@ Methods:
 - Matrix3 Scaled(const Vector3& scale) const
 - bool Equals(const Matrix3& rhs) const
 - Matrix3 Inverse() const
+- String ToString() const
 
 Properties:
 
@@ -2434,6 +2435,7 @@ Methods:
 - bool Equals(const Matrix3x4& rhs) const
 - void Decompose(Vector3& translation, Quaternion& rotation, Vector3& scale) const
 - Matrix3x4 Inverse() const
+- String ToString() const
 
 Properties:
 
@@ -2486,6 +2488,7 @@ Methods:
 - bool Equals(const Matrix4& rhs) const
 - void Decompose(Vector3& translation, Quaternion& rotation, Vector3& scale) const
 - Matrix4 Inverse() const
+- String ToString() const
 
 Properties:
 
@@ -5198,6 +5201,12 @@ Methods:
 - Variant* new(const IntRect& value)
 - Variant(const IntVector2& value) (GC)
 - Variant* new(const IntVector2& value)
+- Variant(const Matrix3& value) (GC)
+- Variant* new(const Matrix3& value)
+- Variant(const Matrix3x4& value) (GC)
+- Variant* new(const Matrix3x4& value)
+- Variant(const Matrix4& value) (GC)
+- Variant* new(const Matrix4& value)
 - Variant(const String type, const String value) (GC)
 - Variant* new(const String type, const String value)
 - Variant(VariantType type, const String value) (GC)
@@ -5225,6 +5234,9 @@ Methods:
 - bool operator==(const IntVector2& rhs) const
 - bool operator==(const StringHash& rhs) const
 - bool operator==(const ShortStringHash& rhs) const
+- bool operator==(const Matrix3& rhs) const
+- bool operator==(const Matrix3x4& rhs) const
+- bool operator==(const Matrix4& rhs) const
 - void SetInt(int value)
 - void SetUint(unsigned value)
 - void SetStringHash(const StringHash& value)
@@ -5242,6 +5254,9 @@ Methods:
 - void SetResourceRefList(const ResourceRefList& value)
 - void SetIntRect(const IntRect& value)
 - void SetIntVector2(const IntVector2& value)
+- void SetMatrix3(const Matrix3& value)
+- void SetMatrix3x4(const Matrix3x4& value)
+- void SetMatrix4(const Matrix4& value)
 - int GetInt() const
 - int GetUInt() const
 - StringHash GetStringHash()
@@ -5259,6 +5274,9 @@ Methods:
 - const ResourceRefList& GetResourceRefList() const
 - const IntRect& GetIntRect() const
 - const IntVector2& GetIntVector2() const
+- const Matrix3& GetMatrix3() const
+- const Matrix3x4& GetMatrix3x4() const
+- const Matrix4& GetMatrix4() const
 - VariantType GetType() const
 - String GetTypeName() const
 - String ToString() const
@@ -5298,6 +5316,9 @@ Methods:
 - void SetIntRect(const String key, const IntRect value)
 - void SetIntVector2(const String key, const IntVector2 value)
 - void SetPtr(const String key, void* value)
+- void SetMatrix3(const String key, const Matrix3 value)
+- void SetMatrix3x4(const String key, const Matrix3x4 value)
+- void SetMatrix4(const String key, const Matrix4 value)
 - int GetInt(const String key)
 - int GetUInt(const String key)
 - StringHash GetStringHash(const String key)
@@ -5316,6 +5337,9 @@ Methods:
 - const IntRect& GetIntRect(const String key)
 - const IntVector2& GetIntVector2(const String key)
 - const void* GetPtr(const String type, const String key)
+- const Matrix3& GetMatrix3(const String key)
+- const Matrix3x4& GetMatrix3x4(const String key)
+- const Matrix4& GetMatrix4(const String key)
 
 ### Vector2
 
@@ -5671,6 +5695,9 @@ Methods:
 - bool SetVector3(const String name, const Vector3& value)
 - bool SetVector4(const String name, const Vector4& value)
 - bool SetVectorVariant(const String name, const Variant& value)
+- bool SetMatrix3(const String name, const Matrix3& value)
+- bool SetMatrix3x4(const String name, const Matrix3x4& value)
+- bool SetMatrix4(const String name, const Matrix4& value)
 - bool IsNull() const
 - bool NotNull() const
 - bool operatorbool() const
@@ -5701,6 +5728,9 @@ Methods:
 - Vector3 GetVector3(const String name) const
 - Vector4 GetVector4(const String name) const
 - Vector4 GetVector(const String name) const
+- Matrix3 GetMatrix3(const String name) const
+- Matrix3x4 GetMatrix3x4(const String name) const
+- Matrix4 GetMatrix4(const String name) const
 - XMLFile* GetFile() const
 
 Properties:
@@ -6129,6 +6159,9 @@ Properties:
 - int VAR_INTRECT
 - int VAR_INTVECTOR2
 - int VAR_PTR
+- int VAR_MATRIX3
+- int VAR_MATRIX3X4
+- int VAR_MATRIX4
 - int MAX_VAR_TYPES
 
 ### VertexElement
@@ -6221,8 +6254,8 @@ Properties:
 - float Random(float range)
 - float Random()
 - float Random(float min, float max)
-- int RandomInt(int min, int max)
 - int RandomInt(int range)
+- int RandomInt(int min, int max)
 - float RandomNormal(float meanValue, float variance)
 - String RemoveTrailingSlash(const String pathName)
 - String ReplaceExtension(const String fullPath, const String newExtension)
@@ -6241,6 +6274,9 @@ Properties:
 - IntRect ToIntRect(const String source)
 - IntVector2 ToIntVector2(const String source)
 - unsigned ToLower(unsigned ch)
+- Matrix3 ToMatrix3(const String source)
+- Matrix3x4 ToMatrix3x4(const String source)
+- Matrix4 ToMatrix4(const String source)
 - Quaternion ToQuaternion(const String source)
 - Rect ToRect(const String source)
 - String ToString(void* value)

+ 18 - 0
Docs/ScriptAPI.dox

@@ -3764,6 +3764,7 @@ Methods:
 - Matrix3 Scaled(const Vector3&) const
 - void SetScale(const Vector3&)
 - void SetScale(float)
+- String ToString() const
 - Matrix3 Transpose() const
 
 Properties:
@@ -3795,6 +3796,7 @@ Methods:
 - void SetTranslation(const Vector3&)
 - Matrix3 ToMatrix3() const
 - Matrix4 ToMatrix4() const
+- String ToString() const
 - Vector3 Translation() const
 
 Properties:
@@ -3828,6 +3830,7 @@ Methods:
 - void SetScale(float)
 - void SetTranslation(const Vector3&)
 - Matrix3 ToMatrix3() const
+- String ToString() const
 - Vector3 Translation() const
 - Matrix4 Transpose() const
 
@@ -6796,6 +6799,9 @@ Methods:
 - IntRect ToIntRect() const
 - IntVector2 ToIntVector2() const
 - String ToLower() const
+- Matrix3 ToMatrix3() const
+- Matrix3x4 ToMatrix3x4() const
+- Matrix4 ToMatrix4() const
 - Quaternion ToQuaternion() const
 - uint ToUInt() const
 - String ToUpper() const
@@ -7742,6 +7748,9 @@ Methods:
 - Variant[]@ GetVariantVector() const
 - const IntRect& GetIntRect() const
 - const IntVector2& GetIntVector2() const
+- const Matrix3& GetMatrix3() const
+- const Matrix3x4& GetMatrix3x4() const
+- const Matrix4& GetMatrix4() const
 - const Quaternion& GetQuaternion() const
 - const ResourceRef& GetResourceRef() const
 - const ResourceRefList& GetResourceRefList() const
@@ -8249,6 +8258,9 @@ Methods:
 - Color GetColor(const String&) const
 - float GetFloat(const String&) const
 - int GetInt(const String&) const
+- Matrix3 GetMatrix3(const String&) const
+- Matrix3x4 GetMatrix3x4(const String&) const
+- Matrix4 GetMatrix4(const String&) const
 - XMLElement GetNext(const String& = String ( )) const
 - Quaternion GetQuaternion(const String&) const
 - ResourceRef GetResourceRef() const
@@ -8279,6 +8291,9 @@ Methods:
 - bool SetColor(const String&, const Color&)
 - bool SetFloat(const String&, float)
 - bool SetInt(const String&, int)
+- bool SetMatrix3(const String&, const Matrix3&)
+- bool SetMatrix3x4(const String&, const Matrix3x4&)
+- bool SetMatrix4(const String&, const Matrix4&)
 - bool SetQuaternion(const String&, const Quaternion&)
 - bool SetResourceRef(const String&, const ResourceRef&)
 - bool SetResourceRefList(const String&, const ResourceRefList&)
@@ -8776,6 +8791,9 @@ Properties:
 - VAR_INTRECT
 - VAR_INTVECTOR2
 - VAR_PTR
+- VAR_MATRIX3
+- VAR_MATRIX3X4
+- VAR_MATRIX4
 
 
 ### VerticalAlignment