RESOLVED FIXED 22793
Clean up FloatPoint3D
https://bugs.webkit.org/show_bug.cgi?id=22793
Summary Clean up FloatPoint3D
Simon Fraser (smfr)
Reported 2008-12-10 11:31:09 PST
Want to do some cleanup of FloatPoint3D.
Attachments
Patch, changelog (2.80 KB, patch)
2008-12-10 11:40 PST, Simon Fraser (smfr)
sam: review+
Simon Fraser (smfr)
Comment 1 2008-12-10 11:40:13 PST
Created attachment 25922 [details] Patch, changelog
Sam Weinig
Comment 2 2008-12-10 11:56:12 PST
Comment on attachment 25922 [details] Patch, changelog > +FloatPoint3D::FloatPoint3D(const FloatPoint& p) > + : m_x(p.x()) > + , m_y(p.y()) > + , m_z(0.f) This should be m_z(0.0f) or just 0. > > +#include "FloatPoint.h" Can this simply be forward declared? Otherwise, r=me.
Simon Fraser (smfr)
Comment 3 2008-12-10 12:03:55 PST
Committing to http://svn.webkit.org/repository/webkit/trunk ... M WebCore/ChangeLog M WebCore/platform/graphics/FloatPoint3D.cpp M WebCore/platform/graphics/FloatPoint3D.h Committed r39181
Note You need to log in before you can comment on or make changes to this bug.