diff --git a/OSCADSharp/OSCADSharp/Solids/Text3D.cs b/OSCADSharp/OSCADSharp/Solids/Text3D.cs index 40045cd..c5a82c7 100644 --- a/OSCADSharp/OSCADSharp/Solids/Text3D.cs +++ b/OSCADSharp/OSCADSharp/Solids/Text3D.cs @@ -46,7 +46,6 @@ namespace OSCADSharp.Solids /// The language of the text. Default is "en". /// 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); - } - } + } /// /// Converts this object to an OpenSCAD script