mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-03 15:17:29 +00:00
Comment about QPDFMatrix and QPDFObjectHandle::Matrix
This commit is contained in:
parent
92fbc6fdf5
commit
aa848126cb
2
TODO
2
TODO
@ -97,8 +97,6 @@ Comments appear in the code prefixed by "ABI"
|
|||||||
* Consider having addArrayItem, replaceKey, etc. return the new value
|
* Consider having addArrayItem, replaceKey, etc. return the new value
|
||||||
so you can say
|
so you can say
|
||||||
auto oh = dict.replaceKey("/Key", QPDFObjectHandle::newSomething());
|
auto oh = dict.replaceKey("/Key", QPDFObjectHandle::newSomething());
|
||||||
* Do something about QPDFObjectHandle::Matrix and QPDFMatrix. They
|
|
||||||
should be the same thing.
|
|
||||||
|
|
||||||
Page splitting/merging
|
Page splitting/merging
|
||||||
======================
|
======================
|
||||||
|
@ -267,7 +267,10 @@ class QPDFObjectHandle
|
|||||||
double ury;
|
double ury;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Convenience object for transformation matrices
|
// Convenience object for transformation matrices. See also
|
||||||
|
// QPDFMatrix. Unfortunately we can't replace this with QPDFMatrix
|
||||||
|
// because QPDFMatrix's default constructor creates the identity
|
||||||
|
// transform matrix and this one is all zeroes.
|
||||||
class Matrix
|
class Matrix
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
Loading…
Reference in New Issue
Block a user