mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-26 04:18:27 +00:00
Deleted unused method in Text3D
This commit is contained in:
parent
5d9f7c2a65
commit
53be8a6a1b
@ -46,7 +46,6 @@ namespace OSCADSharp.Solids
|
|||||||
/// The language of the text. Default is "en".
|
/// The language of the text. Default is "en".
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Language { get; set; }
|
public string Language { get; set; }
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructors
|
#region Constructors
|
||||||
@ -88,18 +87,7 @@ namespace OSCADSharp.Solids
|
|||||||
TextDirection = this.TextDirection,
|
TextDirection = this.TextDirection,
|
||||||
Language = this.Language
|
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>
|
/// <summary>
|
||||||
/// Converts this object to an OpenSCAD script
|
/// Converts this object to an OpenSCAD script
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user