Improving path objects
This commit is contained in:
parent
f5c8b2008c
commit
6e3c4be07c
13 changed files with 51 additions and 357 deletions
|
|
@ -78,10 +78,15 @@ namespace MatterHackers.MatterControl.DesignTools
|
|||
Color = Operations.Object3DExtensions.PrimitiveColors["Text"];
|
||||
}
|
||||
|
||||
public static async Task<TextObject3D> Create()
|
||||
public static async Task<TextObject3D> Create(bool setTo2D = false)
|
||||
{
|
||||
var item = new TextObject3D();
|
||||
|
||||
if (!setTo2D)
|
||||
{
|
||||
item.Output = OutputDimensions.Output2D;
|
||||
}
|
||||
|
||||
await item.Rebuild();
|
||||
|
||||
return item;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue