mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
optimize tm
This commit is contained in:
parent
5882a5e288
commit
9514ebc598
@ -103,7 +103,8 @@ public:
|
|||||||
TM() {}
|
TM() {}
|
||||||
TM(const double * m) {memcpy(_, m, sizeof(_));}
|
TM(const double * m) {memcpy(_, m, sizeof(_));}
|
||||||
bool operator < (const TM & m) const {
|
bool operator < (const TM & m) const {
|
||||||
for(int i = 0; i < 6; ++i)
|
// Note that we only care about the first 4 elements
|
||||||
|
for(int i = 0; i < 4; ++i)
|
||||||
{
|
{
|
||||||
if(_[i] < m._[i] - EPS)
|
if(_[i] < m._[i] - EPS)
|
||||||
return true;
|
return true;
|
||||||
@ -113,7 +114,7 @@ public:
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
bool operator == (const TM & m) const {
|
bool operator == (const TM & m) const {
|
||||||
return _tm_equal(_, m._);
|
return _tm_equal(_, m._, 4);
|
||||||
}
|
}
|
||||||
double _[6];
|
double _[6];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user