mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-09-20 20:07:57 +08:00
complete move of truetype, afm and standard14 fonts
the 3 font types mentioned are moved to the new fonts project, any referenced types are moved to the core project. most truetype classes are made public #8.
This commit is contained in:
@@ -182,7 +182,7 @@
|
||||
/// <param name="x">The X coordinate.</param>
|
||||
/// <returns>The transformed X coordinate.</returns>
|
||||
[Pure]
|
||||
internal double TransformX(double x)
|
||||
public double TransformX(double x)
|
||||
{
|
||||
var xt = A * x + C * 0 + E;
|
||||
|
||||
@@ -205,8 +205,11 @@
|
||||
);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Generate a <see cref="TransformationMatrix"/> translated by the specified amount.
|
||||
/// </summary>
|
||||
[Pure]
|
||||
internal TransformationMatrix Translate(double x, double y)
|
||||
public TransformationMatrix Translate(double x, double y)
|
||||
{
|
||||
var a = A;
|
||||
var b = B;
|
||||
|
Reference in New Issue
Block a user