From 7d7a7fc5ee0dbb2af4c1e9765c0648ef2aea4829 Mon Sep 17 00:00:00 2001 From: BobLd Date: Tue, 18 Feb 2020 15:00:40 +0000 Subject: [PATCH] remove useless code --- src/UglyToad.PdfPig/Content/Word.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/UglyToad.PdfPig/Content/Word.cs b/src/UglyToad.PdfPig/Content/Word.cs index 60d7da88..d1b731b4 100644 --- a/src/UglyToad.PdfPig/Content/Word.cs +++ b/src/UglyToad.PdfPig/Content/Word.cs @@ -300,10 +300,6 @@ var angleRad = Math.Atan(slope); var cos = Math.Cos(angleRad); var sin = Math.Sin(angleRad); - var x0sin = x0 * sin; - var y0sin = y0 * sin; - var x0cos = x0 * cos; - var y0cos = y0 * cos; var inverseRotation = new TransformationMatrix( cos, -sin, 0,