Browse Source

Travis CI: API documentation update at 2017-03-02 20:19:12 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/08fd3b7690fabffbfe9fc5fae86981fb3271807c

Message: Minor documentation expansion on use of std::bind() for events.

commit 873adf5565f8537f9d06f69a649c57635ab1c2de
Merge: 0a19418 f75a784
Author: carnalis <[email protected]>
Date: Thu Mar 2 14:25:42 2017 -0500

Merge branch 'master' of github.com:carnalis/Urho3D

commit 0a1941814ec656d31bb5399c919ba516a2cda7cb
Author: carnalis <[email protected]>
Date: Fri Jan 13 21:24:53 2017 -0500

Minor documentation expansion on use of std::bind() for events.

commit f75a784102708998841302c70736be39eeb2300d
Merge: 84a1f82 06d2100
Author: carnalis <[email protected]>
Date: Thu Mar 2 04:42:56 2017 -0500

Merge branch 'master' of github.com:carnalis/Urho3D

commit 84a1f827752335260b7a5bd6a180613bd018af7e
Author: carnalis <[email protected]>
Date: Fri Jan 13 21:24:53 2017 -0500

Minor documentation expansion on use of std::bind() for events.

commit 06d210045af24646a6161daeaff28fd9828dccfd
Merge: 20877d0 71e9501
Author: carnalis <[email protected]>
Date: Fri Jan 20 09:59:31 2017 -0500

Merge branch 'master' of github.com:carnalis/Urho3D

commit 20877d01c805f58234798f6a0b1baeeee1e1628e
Author: carnalis <[email protected]>
Date: Fri Jan 13 21:24:53 2017 -0500

Minor documentation expansion on use of std::bind() for events.

commit 71e9501934cc9a67eeae1d0c524dbc11a1bd96db
Author: carnalis <[email protected]>
Date: Fri Jan 13 21:24:53 2017 -0500

Minor documentation expansion on use of std::bind() for events.

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

+ 2 - 2
Docs/AngelScriptAPI.h

@@ -8450,10 +8450,10 @@ void FromRotationTo(const Vector3&, const Vector3&);
 Quaternion Inverse() const;
 Quaternion Inverse() const;
 bool IsNaN() const;
 bool IsNaN() const;
 float LengthSquared() const;
 float LengthSquared() const;
-Quaternion Nlerp(Quaternion, float, bool) const;
+Quaternion Nlerp(const Quaternion&, float, bool) const;
 void Normalize();
 void Normalize();
 Quaternion Normalized() const;
 Quaternion Normalized() const;
-Quaternion Slerp(Quaternion, float) const;
+Quaternion Slerp(const Quaternion&, float) const;
 String ToString() const;
 String ToString() const;
 
 
 // Properties:
 // Properties:

+ 2 - 2
Docs/LuaScriptAPI.dox

@@ -4835,8 +4835,8 @@ Methods:
 - float PitchAngle() const
 - float PitchAngle() const
 - float RollAngle() const
 - float RollAngle() const
 - Matrix3 RotationMatrix() const
 - Matrix3 RotationMatrix() const
-- Quaternion Slerp(Quaternion rhs, float t) const
-- Quaternion Nlerp(Quaternion rhs, float t, bool shortestPath) const
+- Quaternion Slerp(const Quaternion& rhs, float t) const
+- Quaternion Nlerp(const Quaternion& rhs, float t, bool shortestPath) const
 - String ToString() const
 - String ToString() const
 
 
 Properties:
 Properties:

+ 2 - 2
Docs/ScriptAPI.dox

@@ -10246,10 +10246,10 @@ Methods:
 - Quaternion Inverse() const
 - Quaternion Inverse() const
 - bool IsNaN() const
 - bool IsNaN() const
 - float LengthSquared() const
 - float LengthSquared() const
-- Quaternion Nlerp(Quaternion, float, bool) const
+- Quaternion Nlerp(const Quaternion&, float, bool) const
 - void Normalize()
 - void Normalize()
 - Quaternion Normalized() const
 - Quaternion Normalized() const
-- Quaternion Slerp(Quaternion, float) const
+- Quaternion Slerp(const Quaternion&, float) const
 - String ToString() const
 - String ToString() const
 
 
 Properties:
 Properties:

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.47
+0.1.48