Skip to content

Commit

Permalink
Per #2486, switch GeneralAffine to Affine to get this to compile #ci-…
Browse files Browse the repository at this point in the history
…test-unit
  • Loading branch information
JohnHalleyGotway committed Jan 13, 2024
1 parent 5951be3 commit 2fa4fd7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/tools/other/mode_graphics/cgraph_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1544,7 +1544,7 @@ return;
////////////////////////////////////////////////////////////////////////


void CgraphBase::concat(const GeneralAffine & aff)
void CgraphBase::concat(const Affine & aff)

{

Expand Down Expand Up @@ -1839,7 +1839,7 @@ return;
////////////////////////////////////////////////////////////////////////


void Cgraph::concat(const GeneralAffine & aff)
void Cgraph::concat(const Affine & aff)

{

Expand Down
4 changes: 2 additions & 2 deletions src/tools/other/mode_graphics/cgraph_main.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ class CgraphBase : public PSfile {
void scale (double);
void scale (double, double);

void concat(const GeneralAffine &);
void concat(const Affine &);

void device_to_user(double, double, double &, double &) const;
void user_to_device(double, double, double &, double &) const;
Expand Down Expand Up @@ -337,7 +337,7 @@ class Cgraph : public CgraphBase {
void scale (double);
void scale (double, double);

void concat(const GeneralAffine &); // works!
void concat(const Affine &); // works!

void clip(const Box &);
void clip();
Expand Down

0 comments on commit 2fa4fd7

Please sign in to comment.