2016-05-15 22:09:13 -07:00

25 lines
634 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OSCADSharp.Solids.Imported
{
/// <summary>
/// Configuration options for processing imported images
/// </summary>
public class ImageImportOptions
{
/// <summary>
/// Indicates whether height-mapping should be used
/// </summary>
public bool HeightMapping { get; set; } = true;
/// <summary>
/// Converts the colors in the image to black and white
/// </summary>
public bool UseGrayScale { get; set; } = false;
}
}