Esempio n. 1
0
 public void setMatrix(IJsSvgMatrix matrix)
 {
     _baseObject.SetMatrix(matrix.BaseObject);
 }
Esempio n. 2
0
        public IJsSvgPoint matrixTransform(IJsSvgMatrix matrix)
        {
            var wrappedValue = _baseObject.MatrixTransform(matrix.BaseObject);

            return((wrappedValue != null) ? CreateWrapper <IJsSvgPoint>(wrappedValue, _engine) : null);
        }
Esempio n. 3
0
        public IJsSvgMatrix multiply(IJsSvgMatrix secondMatrix)
        {
            var wrappedValue = _baseObject.Multiply(((ISvgMatrix)((JsSvgMatrix)secondMatrix)._baseObject));

            return((wrappedValue != null) ? CreateWrapper <IJsSvgMatrix>(wrappedValue, _engine) : null);
        }
Esempio n. 4
0
        public IJsSvgTransform createSVGTransformFromMatrix(IJsSvgMatrix matrix)
        {
            var wrappedValue = _baseObject.CreateSvgTransformFromMatrix(matrix.BaseObject);

            return((wrappedValue != null) ? CreateWrapper <IJsSvgTransform>(wrappedValue, _engine) : null);
        }