<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://mitov.com/wiki/skins/common/feed.css?301"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://mitov.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Class_IGDIPlus.TGPMatrix</id>
		<title>Class IGDIPlus.TGPMatrix - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://mitov.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Class_IGDIPlus.TGPMatrix"/>
		<link rel="alternate" type="text/html" href="https://mitov.com/wiki/index.php?title=Class_IGDIPlus.TGPMatrix&amp;action=history"/>
		<updated>2026-04-26T07:33:09Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.17.0</generator>

	<entry>
		<id>https://mitov.com/wiki/index.php?title=Class_IGDIPlus.TGPMatrix&amp;diff=11106&amp;oldid=prev</id>
		<title>David Alm: Automated Syncronization with Documentation</title>
		<link rel="alternate" type="text/html" href="https://mitov.com/wiki/index.php?title=Class_IGDIPlus.TGPMatrix&amp;diff=11106&amp;oldid=prev"/>
				<updated>2012-10-18T17:18:29Z</updated>
		
		<summary type="html">&lt;p&gt;Automated Syncronization with Documentation&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;b&amp;gt;&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;&lt;br /&gt;
This is a Beta Read Only version of this page. &lt;br /&gt;
Please review and send recommendations to [mailto:mitov@mitov.com mitov@mitov.com]. &lt;br /&gt;
We will enable the editing as soon as we are happy with the overall Wiki site.&lt;br /&gt;
&amp;lt;/span&amp;gt;&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Package:''' [[Package SignalLabBasicPkg|SignalLabBasicPkg]]&lt;br /&gt;
&lt;br /&gt;
'''Unit:''' [[Unit IGDIPlus|IGDIPlus]]&lt;br /&gt;
&lt;br /&gt;
'''Inherits:''' [[Class IGDIPlus.TGPBase|TGPBase]]&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
=== Delphi: ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''type''' TGPMatrix = '''class'''( [[Class IGDIPlus.TGPBase|TGPBase, IGPMatrix]] )&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
=== C++ Builder: ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''class''' TGPMatrix : '''public''' [[Class IGDIPlus.TGPBase|TGPBase]]&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Visual C++ (MFC): ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''class''' CTGPMatrix : '''public''' [[Class IGDIPlus.TGPBase|CTGPBase]]&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
=== C# (.NET): ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''public ref class''' TGPMatrix : [[Class IGDIPlus.TGPBase|Mitov.SignalLab.Base]]&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
== Summary ==&lt;br /&gt;
A Represents a 3×3 matrix that represents an affine transformation. &lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
A [[Class IGDIPlus.TGPMatrix|TGPMatrix]] object represents a 3×3 matrix that, in turn,&lt;br /&gt;
represents an affine transformation. A Matrix object stores&lt;br /&gt;
only six of the 9 numbers in a 3×3 matrix because all 3×3&lt;br /&gt;
matrices that represent affine transformations have the same&lt;br /&gt;
third column (0, 0, 1).&lt;br /&gt;
&lt;br /&gt;
== Methods ==&lt;br /&gt;
&lt;br /&gt;
=== Public ===&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.Clone() : TGPMatrix|function Clone() : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.GetElements() : TGPMatrixParams|function GetElements() : TGPMatrixParams]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.SetElements(Single;Single;Single;Single;Single;Single) : TGPMatrix|function SetElements(m11 : Single; m12 : Single; m21 : Single; m22 : Single; dx : Single; dy : Single) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.SetElements(TGPMatrixParams) : TGPMatrix|function SetElements(AElements : TGPMatrixParams) : TGPMatrix]]&lt;br /&gt;
*[[Method procedure IGDIPlus.TGPMatrix.SetElementsProp(TGPMatrixParams)|procedure SetElementsProp(AElements : TGPMatrixParams)]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.OffsetX() : Single|function OffsetX() : Single]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.OffsetY() : Single|function OffsetY() : Single]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.Reset() : TGPMatrix|function Reset() : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.Multiply(IGPMatrix;TGPMatrixOrder) : TGPMatrix|function Multiply(matrix : IGPMatrix; order : TGPMatrixOrder) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.Translate(Single;Single;TGPMatrixOrder) : TGPMatrix|function Translate(offsetX : Single; offsetY : Single; order : TGPMatrixOrder) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.Scale(Single;Single;TGPMatrixOrder) : TGPMatrix|function Scale(scaleX : Single; scaleY : Single; order : TGPMatrixOrder) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.Rotate(Single;TGPMatrixOrder) : TGPMatrix|function Rotate(angle : Single; order : TGPMatrixOrder) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.RotateAt(Single;TGPPointF;TGPMatrixOrder) : TGPMatrix|function RotateAt(angle : Single; center : TGPPointF; order : TGPMatrixOrder) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.Shear(Single;Single;TGPMatrixOrder) : TGPMatrix|function Shear(shearX : Single; shearY : Single; order : TGPMatrixOrder) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.Invert() : TGPMatrix|function Invert() : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.TransformPointF(TGPPointF) : TGPMatrix|function TransformPointF(var point : TGPPointF) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.TransformPoint(TGPPoint) : TGPMatrix|function TransformPoint(var point : TGPPoint) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.TransformPointsF(array) : TGPMatrix|function TransformPointsF(var pts : array) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.TransformPoints(array) : TGPMatrix|function TransformPoints(var pts : array) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.TransformVectorsF(array) : TGPMatrix|function TransformVectorsF(var pts : array) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.TransformVectors(array) : TGPMatrix|function TransformVectors(var pts : array) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.IsInvertible() : Boolean|function IsInvertible() : Boolean]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.IsIdentity() : Boolean|function IsIdentity() : Boolean]]&lt;br /&gt;
*[[Method function IGDIPlus.TGPMatrix.EqualsMatrix(IGPMatrix) : Boolean|function EqualsMatrix(matrix : IGPMatrix) : Boolean]]&lt;br /&gt;
&lt;br /&gt;
== From [[Class IGDIPlus.TGPBase|TGPBase]] ==&lt;br /&gt;
&lt;br /&gt;
== Methods ==&lt;br /&gt;
&lt;br /&gt;
=== Public ===&lt;br /&gt;
*[[Method function IGDIPlus.TGPBase.NewInstance() : TObject|function NewInstance() : TObject]]&lt;br /&gt;
*[[Method procedure IGDIPlus.TGPBase.FreeInstance()|procedure FreeInstance()]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Classes]]&lt;/div&gt;</summary>
		<author><name>David Alm</name></author>	</entry>

	</feed>