<?xml version="1.0"?>
<doc>
<assembly>
<name>netDxf</name>
</assembly>
<members>
<member name="T:netDxf.AciColor">
<summary>
Represents an ACI color (AutoCAD Color Index) that also supports true color.
</summary>
</member>
<member name="P:netDxf.AciColor.ByLayer">
<summary>
Gets the ByLayer color.
</summary>
</member>
<member name="P:netDxf.AciColor.ByBlock">
<summary>
Gets the ByBlock color.
</summary>
</member>
<member name="P:netDxf.AciColor.Red">
<summary>
Defines a default red color.
</summary>
</member>
<member name="P:netDxf.AciColor.Yellow">
<summary>
Defines a default yellow color.
</summary>
</member>
<member name="P:netDxf.AciColor.Green">
<summary>
Defines a default green color.
</summary>
</member>
<member name="P:netDxf.AciColor.Cyan">
<summary>
Defines a default cyan color.
</summary>
</member>
<member name="P:netDxf.AciColor.Blue">
<summary>
Defines a default blue color.
</summary>
</member>
<member name="P:netDxf.AciColor.Magenta">
<summary>
Defines a default magenta color.
</summary>
</member>
<member name="P:netDxf.AciColor.Default">
<summary>
Defines a default white/black color.
</summary>
</member>
<member name="P:netDxf.AciColor.DarkGray">
<summary>
Defines a default dark gray color.
</summary>
</member>
<member name="P:netDxf.AciColor.LightGray">
<summary>
Defines a default light gray color.
</summary>
</member>
<member name="P:netDxf.AciColor.IndexRgb">
<summary>
A dictionary that contains the indexed colors, the key represents the color index and the value the RGB components of the color.
</summary>
<remarks>
This is the AutoCad default ACI color index to RGB values table.
Changes in the actual view background color in AutoCad might produce changes in the RGB equivalents in some ACI color indexes,
specially the darkest ones.
</remarks>
</member>
<member name="M:netDxf.AciColor.#ctor">
<summary>
Initializes a new instance of the <c>AciColor</c> class with black/white color index 7.
</summary>
</member>
<member name="M:netDxf.AciColor.#ctor(System.Byte,System.Byte,System.Byte)">
<summary>
Initializes a new instance of the <c>AciColor</c> class.
</summary>
<param name="r">Red component (input values range from 0 to 255).</param>
<param name="g">Green component (input values range from 0 to 255).</param>
<param name="b">Blue component (input values range from 0 to 255).</param>
<remarks>By default the UseTrueColor will be set to true.</remarks>
</member>
<member name="M:netDxf.AciColor.#ctor(System.Double,System.Double,System.Double)">
<summary>
Initializes a new instance of the <c>AciColor</c> class.
</summary>
<param name="r">Red component (input values range from 0 to 1).</param>
<param name="g">Green component (input values range from 0 to 1).</param>
<param name="b">Blue component (input values range from 0 to 1).</param>
<remarks>By default the UseTrueColor will be set to true.</remarks>
</member>
<member name="M:netDxf.AciColor.#ctor(System.Drawing.Color)">
<summary>
Initializes a new instance of the <c>AciColor</c> class.
</summary>
<param name="color">A <see cref="T:System.Drawing.Color">color</see>.</param>
<remarks>By default the UseTrueColor will be set to true.</remarks>
</member>
<member name="M:netDxf.AciColor.#ctor(System.Int16)">
<summary>
Initializes a new instance of the <c>AciColor</c> class.
</summary>
<param name="index">Color index.</param>
<remarks>
By default the UseTrueColor will be set to false.<br />
Accepted color index values range from 1 to 255.<br />
Indexes from 1 to 255 represents a color, the index 0 and 256 are reserved for ByLayer and ByBlock colors.
</remarks>
</member>
<member name="P:netDxf.AciColor.IsByLayer">
<summary>
Defines if the color is defined by layer.
</summary>
</member>
<member name="P:netDxf.AciColor.IsByBlock">
<summary>
Defines if the color is defined by block.
</summary>
</member>
<member name="P:netDxf.AciColor.R">
<summary>
Gets the red component of the AciColor.
</summary>
</member>
<member name="P:netDxf.AciColor.G">
<summary>
Gets the green component of the AciColor.
</summary>
</member>
<member name="P:netDxf.AciColor.B">
<summary>
Gets the blue component of the AciColor.
</summary>
</member>
<member name="P:netDxf.AciColor.UseTrueColor">
<summary>
Get or set if the AciColor should use true color values.
</summary>
<remarks>
By default, the constructors that use RGB values will set this boolean to true
while the constants and the constructor that use a color index will set it to false.
</remarks>
</member>
<member name="P:netDxf.AciColor.Index">
<summary>
Gets or sets the color index.
</summary>
<remarks>
Accepted color index values range from 1 to 255.
Indexes from 1 to 255 represents a color, the index 0 and 256 are reserved for ByLayer and ByBlock colors.
</remarks>
</member>
<member name="M:netDxf.AciColor.RgbToAci(System.Byte,System.Byte,System.Byte)">
<summary>
Obtains the approximate color index from the RGB components.
</summary>
<param name="r">Red component.</param>
<param name="g">Green component.</param>
<param name="b">Blue component.</param>
<returns>The approximate color index from the RGB components.</returns>
</member>
<member name="M:netDxf.AciColor.FromHsl(netDxf.Vector3)">
<summary>
Converts HSL (hue, saturation, lightness) value to an <see cref="T:netDxf.AciColor">AciColor</see>.
</summary>
<param name="hsl">A Vector3 containing the hue, saturation, and lightness components.</param>
<returns>An <see cref="T:System.Drawing.Color">AciColor</see> that represents the actual HSL value.</returns>
</member>
<member name="M:netDxf.AciColor.FromHsl(System.Double,System.Double,System.Double)">
<summary>
Converts HSL (hue, saturation, lightness) value to an <see cref="T:netDxf.AciColor">AciColor</see>.
</summary>
<param name="hue">Hue (input values range from 0 to 1).</param>
<param name="saturation">Saturation (input values range from 0 to 1).</param>
<param name="lightness">Lightness (i