<?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=Interface_IGDIPlus.IGPMatrix</id>
		<title>Interface IGDIPlus.IGPMatrix - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://mitov.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Interface_IGDIPlus.IGPMatrix"/>
		<link rel="alternate" type="text/html" href="https://mitov.com/wiki/index.php?title=Interface_IGDIPlus.IGPMatrix&amp;action=history"/>
		<updated>2026-04-20T17:28:45Z</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=Interface_IGDIPlus.IGPMatrix&amp;diff=11351&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=Interface_IGDIPlus.IGPMatrix&amp;diff=11351&amp;oldid=prev"/>
				<updated>2012-10-18T17:18:44Z</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;
== Syntax ==&lt;br /&gt;
=== Delphi: ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''type''' IGPMatrix = '''interface'''&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
== Summary ==&lt;br /&gt;
Interface to a [[Class IGDIPlus.TGPMatrix|TGPMatrix]] object. &lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
Defines interface to a [[Class IGDIPlus.TGPMatrix|TGPMatrix]] object.&lt;br /&gt;
&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;
== Properties ==&lt;br /&gt;
*[[Property IGDIPlus.IGPMatrix.Elements|Elements]] - Gets or sets the elements of the matrix. &lt;br /&gt;
&lt;br /&gt;
== Methods ==&lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.GetNativeMatrix() : GpMatrix|function GetNativeMatrix() : GpMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.Clone() : TGPMatrix|function Clone() : TGPMatrix]] - Creates a new Matrix object that is a copy of this Matrix object. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.GetElements() : TGPMatrixParams|function GetElements() : TGPMatrixParams]] - Returns the elements of the matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.SetElements(Single;Single;Single;Single;Single;Single) : TGPMatrix|function SetElements(m11 : Single; m12 : Single; m21 : Single; m22 : Single; dx : Single; dy : Single) : TGPMatrix]] - Sets the elements of the matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.SetElements(TGPMatrixParams) : TGPMatrix|function SetElements(AElements : TGPMatrixParams) : TGPMatrix]] - Sets the elements of the matrix. &lt;br /&gt;
*[[Method procedure IGDIPlus.IGPMatrix.SetElementsProp(TGPMatrixParams)|procedure SetElementsProp(AElements : TGPMatrixParams)]]&lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.OffsetX() : Single|function OffsetX() : Single]] - Returns the horizontal translation value of the matrix, which is the element in row 3, column 1. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.OffsetY() : Single|function OffsetY() : Single]] - Returns the vertical translation value of the matrix, which is the element in row 3, column 2. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.Reset() : TGPMatrix|function Reset() : TGPMatrix]] - Updates this matrix with the elements of the identity matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.Multiply(IGPMatrix;TGPMatrixOrder) : TGPMatrix|function Multiply(matrix : IGPMatrix; order : TGPMatrixOrder) : TGPMatrix]] - Updates the matrix with the product of itself and another matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.Translate(Single;Single;TGPMatrixOrder) : TGPMatrix|function Translate(offsetX : Single; offsetY : Single; order : TGPMatrixOrder) : TGPMatrix]] - Updates the matrix with the product of itself and a translation matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.Scale(Single;Single;TGPMatrixOrder) : TGPMatrix|function Scale(scaleX : Single; scaleY : Single; order : TGPMatrixOrder) : TGPMatrix]] - Updates the matrix with the product of itself and a scaling matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.Rotate(Single;TGPMatrixOrder) : TGPMatrix|function Rotate(angle : Single; order : TGPMatrixOrder) : TGPMatrix]] - Updates the matrix with the product of itself and a rotation matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.RotateAt(Single;TGPPointF;TGPMatrixOrder) : TGPMatrix|function RotateAt(angle : Single; center : TGPPointF; order : TGPMatrixOrder) : TGPMatrix]] - Updates the matrix with the product of itself and a matrix that represents rotation about a specified point. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.Shear(Single;Single;TGPMatrixOrder) : TGPMatrix|function Shear(shearX : Single; shearY : Single; order : TGPMatrixOrder) : TGPMatrix]] - Updates the matrix with the product of itself and a shearing matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.Invert() : TGPMatrix|function Invert() : TGPMatrix]] - Replaces the elements of the matrix with the elements of its inverse. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.TransformPointF(TGPPointF) : TGPMatrix|function TransformPointF(var point : TGPPointF) : TGPMatrix]] - Multiplies point by the matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.TransformPoint(TGPPoint) : TGPMatrix|function TransformPoint(var point : TGPPoint) : TGPMatrix]] - Multiplies point by the matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.TransformPointsF(array) : TGPMatrix|function TransformPointsF(var pts : array) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.TransformPoints(array) : TGPMatrix|function TransformPoints(var pts : array) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.TransformVectorsF(array) : TGPMatrix|function TransformVectorsF(var pts : array) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.TransformVectors(array) : TGPMatrix|function TransformVectors(var pts : array) : TGPMatrix]]&lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.IsInvertible() : Boolean|function IsInvertible() : Boolean]] - Determines whether the matrix is invertible. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.IsIdentity() : Boolean|function IsIdentity() : Boolean]] - Determines whether the matrix is the identity matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPMatrix.Equals(IGPMatrix) : Boolean|function Equals(matrix : IGPMatrix) : Boolean]] - Determines whether the elements of this matrix are equal to the elements of another matrix. &lt;br /&gt;
&lt;br /&gt;
[[Category:Interfaces]]&lt;/div&gt;</summary>
		<author><name>David Alm</name></author>	</entry>

	</feed>