svgellipsenode.cxx (ddde725d) svgellipsenode.cxx (e2bf1e9d)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 116 unchanged lines hidden (view full) ---

125 const basegfx::B2DHomMatrix aMatrix(readTransform(aContent, *this));
126
127 if(!aMatrix.isIdentity())
128 {
129 setTransform(&aMatrix);
130 }
131 break;
132 }
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 116 unchanged lines hidden (view full) ---

125 const basegfx::B2DHomMatrix aMatrix(readTransform(aContent, *this));
126
127 if(!aMatrix.isIdentity())
128 {
129 setTransform(&aMatrix);
130 }
131 break;
132 }
133 default:
134 {
135 break;
136 }
133 }
134 }
135
137 }
138 }
139
136 void SvgEllipseNode::decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool bReferenced) const
140 void SvgEllipseNode::decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool /*bReferenced*/) const
137 {
138 const SvgStyleAttributes* pStyle = getSvgStyleAttributes();
139
140 if(pStyle && getRx().isSet() && getRy().isSet())
141 {
142 const double fRx(getRx().solve(*this, xcoordinate));
143 const double fRy(getRy().solve(*this, ycoordinate));
144

--- 25 unchanged lines hidden ---
141 {
142 const SvgStyleAttributes* pStyle = getSvgStyleAttributes();
143
144 if(pStyle && getRx().isSet() && getRy().isSet())
145 {
146 const double fRx(getRx().solve(*this, xcoordinate));
147 const double fRy(getRy().solve(*this, ycoordinate));
148

--- 25 unchanged lines hidden ---