7 references to TransformPoints
System.Drawing.Common.Tests (7)
mono\System.Drawing\GraphicsTests.cs (1)
2949g.TransformPoints(CoordinateSpace.Page, CoordinateSpace.Device, ptf);
System\Drawing\GraphicsTests.cs (6)
1810graphics.TransformPoints(destSpace, srcSpace, points); 1842graphics.TransformPoints(space, space, points); 1854AssertExtensions.Throws<ArgumentException>(null, () => graphics.TransformPoints(destSpace, CoordinateSpace.World, new PointF[] { new(1, 1) })); 1865AssertExtensions.Throws<ArgumentException>(null, () => graphics.TransformPoints(CoordinateSpace.World, srcSpace, new PointF[] { new(1, 1) })); 1874AssertExtensions.Throws<ArgumentNullException>("pts", () => graphics.TransformPoints(CoordinateSpace.Page, CoordinateSpace.Page, (PointF[])null)); 1883AssertExtensions.Throws<ArgumentException>(null, () => graphics.TransformPoints(CoordinateSpace.Page, CoordinateSpace.Page, Array.Empty<PointF>()));