diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-08-23 16:41:54 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-08-23 16:41:54 +0200 |
commit | 4a29c73403c4dc713a8a31cb96289adff2b910c1 (patch) | |
tree | de0c6b191031bac7fb2764edb2a81382a331f81c /dep/g3dlite/source/LineSegment.cpp | |
parent | b90329d63acaecb1f074dd2b303561baa9f639a2 (diff) | |
parent | 1255434882777053bca06656786abc1a598deda9 (diff) |
Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4
Diffstat (limited to 'dep/g3dlite/source/LineSegment.cpp')
-rw-r--r-- | dep/g3dlite/source/LineSegment.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dep/g3dlite/source/LineSegment.cpp b/dep/g3dlite/source/LineSegment.cpp index 754600ad554..63a28fce6e6 100644 --- a/dep/g3dlite/source/LineSegment.cpp +++ b/dep/g3dlite/source/LineSegment.cpp @@ -80,19 +80,19 @@ bool LineSegment::intersectsSolidSphere(const class Sphere& s) const { LineSegment::LineSegment(class BinaryInput& b) { - deserialize(b); + deserialize(b); } void LineSegment::serialize(class BinaryOutput& b) const { - _point.serialize(b); - direction.serialize(b); + _point.serialize(b); + direction.serialize(b); } void LineSegment::deserialize(class BinaryInput& b) { - _point.deserialize(b); - direction.deserialize(b); + _point.deserialize(b); + direction.deserialize(b); } |