/// <summary> /// Default Constructor for a <see cref = "SharpDX.Direct2D1.TransformedGeometry" />. /// </summary> /// <param name="factory">an instance of <see cref = "SharpDX.Direct2D1.Factory" /></param> /// <param name="geometrySource"></param> /// <param name="matrix3X2"></param> public TransformedGeometry(Factory factory, Geometry geometrySource, Matrix3x2 matrix3X2) : base(IntPtr.Zero) { factory.CreateTransformedGeometry(geometrySource, ref matrix3X2, this); }