00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00024
00026
00028 #include <SFML/Graphics/Matrix3.hpp>
00029
00030
00031 namespace sf
00032 {
00034
00036 const Matrix3 Matrix3::Identity(1, 0, 0,
00037 0, 1, 0,
00038 0, 0, 1);
00039
00040 }