mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-06 05:56:37 +08:00
add multiplication manipulators to perl
This commit is contained in:
parent
3c757c27e3
commit
82787cc33c
@ -17,6 +17,16 @@
|
|||||||
Clone<TransformationMatrix> inverse()
|
Clone<TransformationMatrix> inverse()
|
||||||
%code{% RETVAL = THIS->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)
|
bool equal(TransformationMatrix* other)
|
||||||
%code{% RETVAL = (*THIS == *other); %};
|
%code{% RETVAL = (*THIS == *other); %};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user