This is a groupShape with a child shape:
<p:nvgrpsppr>
<p:cnvpr name="Group 256" id="260" />
<p:cnvgrpsppr>
<a:grpsplocks nochangeaspect="1" />
</p:cnvgrpsppr>
<p:nvpr />
</p:nvgrpsppr>
<p:grpsppr bwmode="auto">
<a:xfrm>
<a:off y="1940518" x="2952779" />
<a:ext cy="2209679" cx="1219680" />
<a:choff y="1052" x="1972" />
<a:chext cy="1116" cx="616" />
</a:xfrm>
<a:solidfill>
<a:srgbclr val="F7B63E" />
</a:solidfill>
</p:grpsppr>
<p:sp>
<p:nvsppr>
<p:cnvpr name="Freeform 257" id="262" />
<p:cnvsppr>
<a:splocks noeditpoints="1" />
</p:cnvsppr>
<p:nvpr />
</p:nvsppr>
<p:sppr bwmode="auto">
<a:xfrm>
<a:off y="1160" x="2161" />
<a:ext cy="287" cx="288" />
</a:xfrm>
</p:sppr>
</p:sp>
When I ungroup, get this:
<p:grpsppr>
<a:xfrm>
<a:off y="0" x="0" />
<a:ext cy="0" cx="0" />
<a:choff y="0" x="0" />
<a:chext cy="0" cx="0" />
</a:xfrm>
</p:grpsppr>
<p:sp>
<p:nvsppr>
<p:cnvpr name="Freeform 257" id="262" />
<p:cnvsppr>
<a:splocks noeditpoints="1" />
</p:cnvsppr>
<p:nvpr />
</p:nvsppr>
<p:sppr bwmode="auto">
<a:xfrm>
<a:off y="2154358" x="3326999" />
<a:ext cy="568260" cx="570240" />
</a:xfrm>
</p:sppr>
</p:sp>
The childShape converted to absolute positioning.
<a:xfrm>
<a:off y="1160" x="2161" />
<a:ext cy="287" cx="288" />
</a:xfrm>
converted to:
<a:xfrm>
<a:off y="2154358" x="3326999" />
<a:ext cy="568260" cx="570240" />
</a:xfrm>
I calculated the length and width by calculation.
width = (group a:ext:cx) / (group a:chExt:cx) * (child a:ext:x);
height = (group a:ext:cy) / (group a:chExt:cy) * (child a:ext:y);
But I tried many kinds of operations, and I couldn't get how to convert the x coordinate and y coordinate.
What operation should I pass to convert y:1160 to y:2154358.
please give me some advices.