mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-12 22:18:34 +00:00
25 lines
634 B
C#
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;
|
|
}
|
|
}
|