-rw-r--r-- | agg-plot/trans.h | 6 |
diff --git a/agg-plot/trans.h b/agg-plot/trans.h index 00bd40c2..71727d12 100644 --- a/agg-plot/trans.h +++ b/agg-plot/trans.h @@ -86,6 +86,12 @@ struct trans { { this->m_source->apply_transform(m, as * m_norm); }; + + virtual bool affine_compose(agg::trans_affine& m) + { + trans_affine_compose (this->m_matrix, m); + return true; + }; }; typedef agg::conv_transform<vertex_source> symbol_type; |