diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.EmbroideryUI/Materials/Mesh.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.EmbroideryUI/Materials/Mesh.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.EmbroideryUI/Materials/Mesh.cs b/Software/Visual_Studio/Tango.EmbroideryUI/Materials/Mesh.cs new file mode 100644 index 000000000..e99dd4823 --- /dev/null +++ b/Software/Visual_Studio/Tango.EmbroideryUI/Materials/Mesh.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.EmbroideryUI.Materials +{ + public class Mesh : IEmbroideryMaterial + { + public double Coefficient + { + get + { + return 1; + } + } + + public string Name + { + get + { + return "Mesh"; + } + } + } +} |
