add multiplication manipulators to perl

This commit is contained in:
Michael Kirsch 2019-07-04 19:23:43 +02:00 committed by Joseph Lenox
parent 3c757c27e3
commit 82787cc33c

View File

@ -17,6 +17,16 @@
Clone<TransformationMatrix> inverse()
%code{% RETVAL = THIS->inverse(); %};
Clone<TransformationMatrix> multiplyLeft(TransformationMatrix* left)
%code{% RETVAL = THIS->multiplyLeft(*left); %};
void applyLeft(TransformationMatrix* left)
%code{% THIS->applyLeft(*left); %};
Clone<TransformationMatrix> multiplyRight(TransformationMatrix* right)
%code{% RETVAL = THIS->multiplyRight(*right); %};
void applyRight(TransformationMatrix* right)
%code{% THIS->applyRight(*right); %};
bool equal(TransformationMatrix* other)
%code{% RETVAL = (*THIS == *other); %};