Deleted unused method in Text3D

This commit is contained in:
Michael Smith 2016-02-29 23:18:18 -08:00
parent 5d9f7c2a65
commit 53be8a6a1b

View File

@ -46,7 +46,6 @@ namespace OSCADSharp.Solids
/// The language of the text. Default is "en".
/// </summary>
public string Language { get; set; }
#endregion
#region Constructors
@ -88,18 +87,7 @@ namespace OSCADSharp.Solids
TextDirection = this.TextDirection,
Language = this.Language
};
}
private void appendIfValueNotNullOrEmpty(string name, string value, StringBuilder sb)
{
if(!String.IsNullOrEmpty(value))
{
sb.Append(", ");
sb.Append(name);
sb.Append("=");
sb.Append(value);
}
}
}
/// <summary>
/// Converts this object to an OpenSCAD script