#ifdef UNSAFE_BUFFERS_BUILD
#pragma allow_unsafe_buffers
#endif
#ifndef UI_GFX_GEOMETRY_MATRIX3_F_H_
#define UI_GFX_GEOMETRY_MATRIX3_F_H_
#include "base/check.h"
#include "ui/gfx/geometry/vector3d_f.h"
namespace gfx {
class GEOMETRY_EXPORT Matrix3F { … };
inline bool operator==(const Matrix3F& lhs, const Matrix3F& rhs) { … }
inline Matrix3F operator+(const Matrix3F& lhs, const Matrix3F& rhs) { … }
inline Matrix3F operator-(const Matrix3F& lhs, const Matrix3F& rhs) { … }
GEOMETRY_EXPORT Matrix3F MatrixProduct(const Matrix3F& lhs,
const Matrix3F& rhs);
GEOMETRY_EXPORT Vector3dF MatrixProduct(const Matrix3F& lhs,
const Vector3dF& rhs);
}
#endif