### YamlMime:ManagedReference items: - uid: MLEM.Graphics.ColorHelper commentId: T:MLEM.Graphics.ColorHelper id: ColorHelper parent: MLEM.Graphics children: - MLEM.Graphics.ColorHelper.FromHexRgb(System.Int32) - MLEM.Graphics.ColorHelper.FromHexRgba(System.Int32) - MLEM.Graphics.ColorHelper.FromHexString(System.String) - MLEM.Graphics.ColorHelper.FromHsl(System.Single,System.Single,System.Single) - MLEM.Graphics.ColorHelper.FromHsl(System.ValueTuple{System.Single,System.Single,System.Single}) - MLEM.Graphics.ColorHelper.FromHsv(System.Single,System.Single,System.Single) - MLEM.Graphics.ColorHelper.FromHsv(System.ValueTuple{System.Single,System.Single,System.Single}) - MLEM.Graphics.ColorHelper.TryFromHexString(System.String,Microsoft.Xna.Framework.Color@) langs: - csharp - vb name: ColorHelper nameWithType: ColorHelper fullName: MLEM.Graphics.ColorHelper type: Class source: remote: path: MLEM/Graphics/ColorExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: ColorHelper path: ../MLEM/Graphics/ColorExtensions.cs startLine: 130 assemblies: - MLEM namespace: MLEM.Graphics summary: A set of utility methods for dealing with objects. example: [] syntax: content: public static class ColorHelper content.vb: Public Module ColorHelper inheritance: - System.Object inheritedMembers: - System.Object.ToString - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - uid: MLEM.Graphics.ColorHelper.FromHexRgba(System.Int32) commentId: M:MLEM.Graphics.ColorHelper.FromHexRgba(System.Int32) id: FromHexRgba(System.Int32) parent: MLEM.Graphics.ColorHelper langs: - csharp - vb name: FromHexRgba(int) nameWithType: ColorHelper.FromHexRgba(int) fullName: MLEM.Graphics.ColorHelper.FromHexRgba(int) type: Method source: remote: path: MLEM/Graphics/ColorExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: FromHexRgba path: ../MLEM/Graphics/ColorExtensions.cs startLine: 138 assemblies: - MLEM namespace: MLEM.Graphics summary: >- Parses a hexadecimal number into an rgba color. The number should be in the format 0xaarrggbb. example: [] syntax: content: public static Color FromHexRgba(int value) parameters: - id: value type: System.Int32 description: The number to parse. return: type: Microsoft.Xna.Framework.Color description: The resulting color. content.vb: Public Shared Function FromHexRgba(value As Integer) As Color overload: MLEM.Graphics.ColorHelper.FromHexRgba* nameWithType.vb: ColorHelper.FromHexRgba(Integer) fullName.vb: MLEM.Graphics.ColorHelper.FromHexRgba(Integer) name.vb: FromHexRgba(Integer) - uid: MLEM.Graphics.ColorHelper.FromHexRgb(System.Int32) commentId: M:MLEM.Graphics.ColorHelper.FromHexRgb(System.Int32) id: FromHexRgb(System.Int32) parent: MLEM.Graphics.ColorHelper langs: - csharp - vb name: FromHexRgb(int) nameWithType: ColorHelper.FromHexRgb(int) fullName: MLEM.Graphics.ColorHelper.FromHexRgb(int) type: Method source: remote: path: MLEM/Graphics/ColorExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: FromHexRgb path: ../MLEM/Graphics/ColorExtensions.cs startLine: 148 assemblies: - MLEM namespace: MLEM.Graphics summary: >- Parses a hexadecimal number into an rgb color with 100% alpha. The number should be in the format 0xrrggbb. example: [] syntax: content: public static Color FromHexRgb(int value) parameters: - id: value type: System.Int32 description: The number to parse. return: type: Microsoft.Xna.Framework.Color description: The resulting color. content.vb: Public Shared Function FromHexRgb(value As Integer) As Color overload: MLEM.Graphics.ColorHelper.FromHexRgb* nameWithType.vb: ColorHelper.FromHexRgb(Integer) fullName.vb: MLEM.Graphics.ColorHelper.FromHexRgb(Integer) name.vb: FromHexRgb(Integer) - uid: MLEM.Graphics.ColorHelper.FromHexString(System.String) commentId: M:MLEM.Graphics.ColorHelper.FromHexString(System.String) id: FromHexString(System.String) parent: MLEM.Graphics.ColorHelper langs: - csharp - vb name: FromHexString(string) nameWithType: ColorHelper.FromHexString(string) fullName: MLEM.Graphics.ColorHelper.FromHexString(string) type: Method source: remote: path: MLEM/Graphics/ColorExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: FromHexString path: ../MLEM/Graphics/ColorExtensions.cs startLine: 159 assemblies: - MLEM namespace: MLEM.Graphics summary: >- Parses a hexadecimal string into a color and throws a if parsing fails. The string can either be formatted as RRGGBB or AARRGGBB and can optionally start with a #. example: [] syntax: content: public static Color FromHexString(string value) parameters: - id: value type: System.String description: The string to parse. return: type: Microsoft.Xna.Framework.Color description: The resulting color. content.vb: Public Shared Function FromHexString(value As String) As Color overload: MLEM.Graphics.ColorHelper.FromHexString* exceptions: - type: System.FormatException commentId: T:System.FormatException description: Thrown if parsing fails. nameWithType.vb: ColorHelper.FromHexString(String) fullName.vb: MLEM.Graphics.ColorHelper.FromHexString(String) name.vb: FromHexString(String) - uid: MLEM.Graphics.ColorHelper.TryFromHexString(System.String,Microsoft.Xna.Framework.Color@) commentId: M:MLEM.Graphics.ColorHelper.TryFromHexString(System.String,Microsoft.Xna.Framework.Color@) id: TryFromHexString(System.String,Microsoft.Xna.Framework.Color@) parent: MLEM.Graphics.ColorHelper langs: - csharp - vb name: TryFromHexString(string, out Color) nameWithType: ColorHelper.TryFromHexString(string, out Color) fullName: MLEM.Graphics.ColorHelper.TryFromHexString(string, out Microsoft.Xna.Framework.Color) type: Method source: remote: path: MLEM/Graphics/ColorExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: TryFromHexString path: ../MLEM/Graphics/ColorExtensions.cs startLine: 172 assemblies: - MLEM namespace: MLEM.Graphics summary: >- Tries to parse a hexadecimal string into a color and returns whether a color was successfully parsed. The string can either be formatted as RRGGBB or AARRGGBB and can optionally start with a #. example: [] syntax: content: public static bool TryFromHexString(string value, out Color color) parameters: - id: value type: System.String description: The string to parse. - id: color type: Microsoft.Xna.Framework.Color description: The resulting color. return: type: System.Boolean description: Whether parsing was successful. content.vb: Public Shared Function TryFromHexString(value As String, color As Color) As Boolean overload: MLEM.Graphics.ColorHelper.TryFromHexString* nameWithType.vb: ColorHelper.TryFromHexString(String, Color) fullName.vb: MLEM.Graphics.ColorHelper.TryFromHexString(String, Microsoft.Xna.Framework.Color) name.vb: TryFromHexString(String, Color) - uid: MLEM.Graphics.ColorHelper.FromHsl(System.ValueTuple{System.Single,System.Single,System.Single}) commentId: M:MLEM.Graphics.ColorHelper.FromHsl(System.ValueTuple{System.Single,System.Single,System.Single}) id: FromHsl(System.ValueTuple{System.Single,System.Single,System.Single}) parent: MLEM.Graphics.ColorHelper langs: - csharp - vb name: FromHsl((float H, float S, float L)) nameWithType: ColorHelper.FromHsl((float H, float S, float L)) fullName: MLEM.Graphics.ColorHelper.FromHsl((float H, float S, float L)) type: Method source: remote: path: MLEM/Graphics/ColorExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: FromHsl path: ../MLEM/Graphics/ColorExtensions.cs startLine: 189 assemblies: - MLEM namespace: MLEM.Graphics summary: Converts the given HSL color to an RGB and returns the result. remarks: This code is adapted from https://gist.github.com/mjackson/5311256. example: [] syntax: content: public static Color FromHsl((float H, float S, float L) color) parameters: - id: color type: System.ValueTuple{System.Single,System.Single,System.Single} description: The HSL color to convert, as a value tuple that contains H, S and L values, each between 0 and 1. return: type: Microsoft.Xna.Framework.Color description: The resulting RGB color. content.vb: Public Shared Function FromHsl(color As (H As Single, S As Single, L As Single)) As Color overload: MLEM.Graphics.ColorHelper.FromHsl* nameWithType.vb: ColorHelper.FromHsl((H As Single, S As Single, L As Single)) fullName.vb: MLEM.Graphics.ColorHelper.FromHsl((H As Single, S As Single, L As Single)) name.vb: FromHsl((H As Single, S As Single, L As Single)) - uid: MLEM.Graphics.ColorHelper.FromHsl(System.Single,System.Single,System.Single) commentId: M:MLEM.Graphics.ColorHelper.FromHsl(System.Single,System.Single,System.Single) id: FromHsl(System.Single,System.Single,System.Single) parent: MLEM.Graphics.ColorHelper langs: - csharp - vb name: FromHsl(float, float, float) nameWithType: ColorHelper.FromHsl(float, float, float) fullName: MLEM.Graphics.ColorHelper.FromHsl(float, float, float) type: Method source: remote: path: MLEM/Graphics/ColorExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: FromHsl path: ../MLEM/Graphics/ColorExtensions.cs startLine: 201 assemblies: - MLEM namespace: MLEM.Graphics summary: Converts the given HSL values to an RGB and returns the result. remarks: This code is adapted from https://gist.github.com/mjackson/5311256. example: [] syntax: content: public static Color FromHsl(float h, float s, float l) parameters: - id: h type: System.Single description: The H component of the HSL color, between 0 and 1. - id: s type: System.Single description: The S component of the HSL color, between 0 and 1. - id: l type: System.Single description: The L component of the HSL color, between 0 and 1. return: type: Microsoft.Xna.Framework.Color description: The resulting RGB color. content.vb: Public Shared Function FromHsl(h As Single, s As Single, l As Single) As Color overload: MLEM.Graphics.ColorHelper.FromHsl* nameWithType.vb: ColorHelper.FromHsl(Single, Single, Single) fullName.vb: MLEM.Graphics.ColorHelper.FromHsl(Single, Single, Single) name.vb: FromHsl(Single, Single, Single) - uid: MLEM.Graphics.ColorHelper.FromHsv(System.ValueTuple{System.Single,System.Single,System.Single}) commentId: M:MLEM.Graphics.ColorHelper.FromHsv(System.ValueTuple{System.Single,System.Single,System.Single}) id: FromHsv(System.ValueTuple{System.Single,System.Single,System.Single}) parent: MLEM.Graphics.ColorHelper langs: - csharp - vb name: FromHsv((float H, float S, float V)) nameWithType: ColorHelper.FromHsv((float H, float S, float V)) fullName: MLEM.Graphics.ColorHelper.FromHsv((float H, float S, float V)) type: Method source: remote: path: MLEM/Graphics/ColorExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: FromHsv path: ../MLEM/Graphics/ColorExtensions.cs startLine: 224 assemblies: - MLEM namespace: MLEM.Graphics summary: Converts the given HSV color to an RGB and returns the result. remarks: This code is adapted from https://gist.github.com/mjackson/5311256. example: [] syntax: content: public static Color FromHsv((float H, float S, float V) color) parameters: - id: color type: System.ValueTuple{System.Single,System.Single,System.Single} description: The HSV color to convert, as a value tuple that contains H, S and V values, each between 0 and 1. return: type: Microsoft.Xna.Framework.Color description: The resulting RGB color. content.vb: Public Shared Function FromHsv(color As (H As Single, S As Single, V As Single)) As Color overload: MLEM.Graphics.ColorHelper.FromHsv* nameWithType.vb: ColorHelper.FromHsv((H As Single, S As Single, V As Single)) fullName.vb: MLEM.Graphics.ColorHelper.FromHsv((H As Single, S As Single, V As Single)) name.vb: FromHsv((H As Single, S As Single, V As Single)) - uid: MLEM.Graphics.ColorHelper.FromHsv(System.Single,System.Single,System.Single) commentId: M:MLEM.Graphics.ColorHelper.FromHsv(System.Single,System.Single,System.Single) id: FromHsv(System.Single,System.Single,System.Single) parent: MLEM.Graphics.ColorHelper langs: - csharp - vb name: FromHsv(float, float, float) nameWithType: ColorHelper.FromHsv(float, float, float) fullName: MLEM.Graphics.ColorHelper.FromHsv(float, float, float) type: Method source: remote: path: MLEM/Graphics/ColorExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: FromHsv path: ../MLEM/Graphics/ColorExtensions.cs startLine: 236 assemblies: - MLEM namespace: MLEM.Graphics summary: Converts the given HSV values to an RGB and returns the result. remarks: This code is adapted from https://gist.github.com/mjackson/5311256. example: [] syntax: content: public static Color FromHsv(float h, float s, float v) parameters: - id: h type: System.Single description: The H component of the HSV color, between 0 and 1. - id: s type: System.Single description: The S component of the HSV color, between 0 and 1. - id: v type: System.Single description: The V component of the HSV color, between 0 and 1. return: type: Microsoft.Xna.Framework.Color description: The resulting RGB color. content.vb: Public Shared Function FromHsv(h As Single, s As Single, v As Single) As Color overload: MLEM.Graphics.ColorHelper.FromHsv* nameWithType.vb: ColorHelper.FromHsv(Single, Single, Single) fullName.vb: MLEM.Graphics.ColorHelper.FromHsv(Single, Single, Single) name.vb: FromHsv(Single, Single, Single) references: - uid: Microsoft.Xna.Framework.Color commentId: T:Microsoft.Xna.Framework.Color parent: Microsoft.Xna.Framework isExternal: true name: Color nameWithType: Color fullName: Microsoft.Xna.Framework.Color - uid: MLEM.Graphics commentId: N:MLEM.Graphics href: MLEM.html name: MLEM.Graphics nameWithType: MLEM.Graphics fullName: MLEM.Graphics spec.csharp: - uid: MLEM name: MLEM href: MLEM.html - name: . - uid: MLEM.Graphics name: Graphics href: MLEM.Graphics.html spec.vb: - uid: MLEM name: MLEM href: MLEM.html - name: . - uid: MLEM.Graphics name: Graphics href: MLEM.Graphics.html - uid: System.Object commentId: T:System.Object parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: object nameWithType: object fullName: object nameWithType.vb: Object fullName.vb: Object name.vb: Object - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring name: ToString() nameWithType: object.ToString() fullName: object.ToString() nameWithType.vb: Object.ToString() fullName.vb: Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) spec.vb: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) nameWithType: object.Equals(object) fullName: object.Equals(object) nameWithType.vb: Object.Equals(Object) fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) name: Equals(object, object) nameWithType: object.Equals(object, object) fullName: object.Equals(object, object) nameWithType.vb: Object.Equals(Object, Object) fullName.vb: Object.Equals(Object, Object) name.vb: Equals(Object, Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals name: ReferenceEquals(object, object) nameWithType: object.ReferenceEquals(object, object) fullName: object.ReferenceEquals(object, object) nameWithType.vb: Object.ReferenceEquals(Object, Object) fullName.vb: Object.ReferenceEquals(Object, Object) name.vb: ReferenceEquals(Object, Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode name: GetHashCode() nameWithType: object.GetHashCode() fullName: object.GetHashCode() nameWithType.vb: Object.GetHashCode() fullName.vb: Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype name: GetType() nameWithType: object.GetType() fullName: object.GetType() nameWithType.vb: Object.GetType() fullName.vb: Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) spec.vb: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone name: MemberwiseClone() nameWithType: object.MemberwiseClone() fullName: object.MemberwiseClone() nameWithType.vb: Object.MemberwiseClone() fullName.vb: Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) - uid: Microsoft.Xna.Framework commentId: N:Microsoft.Xna.Framework isExternal: true name: Microsoft.Xna.Framework nameWithType: Microsoft.Xna.Framework fullName: Microsoft.Xna.Framework spec.csharp: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true spec.vb: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: MLEM.Graphics.ColorHelper.FromHexRgba* commentId: Overload:MLEM.Graphics.ColorHelper.FromHexRgba href: MLEM.Graphics.ColorHelper.html#MLEM_Graphics_ColorHelper_FromHexRgba_System_Int32_ name: FromHexRgba nameWithType: ColorHelper.FromHexRgba fullName: MLEM.Graphics.ColorHelper.FromHexRgba - uid: System.Int32 commentId: T:System.Int32 parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 name: int nameWithType: int fullName: int nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer - uid: MLEM.Graphics.ColorHelper.FromHexRgb* commentId: Overload:MLEM.Graphics.ColorHelper.FromHexRgb href: MLEM.Graphics.ColorHelper.html#MLEM_Graphics_ColorHelper_FromHexRgb_System_Int32_ name: FromHexRgb nameWithType: ColorHelper.FromHexRgb fullName: MLEM.Graphics.ColorHelper.FromHexRgb - uid: System.FormatException commentId: T:System.FormatException isExternal: true href: https://learn.microsoft.com/dotnet/api/system.formatexception name: FormatException nameWithType: FormatException fullName: System.FormatException - uid: MLEM.Graphics.ColorHelper.FromHexString* commentId: Overload:MLEM.Graphics.ColorHelper.FromHexString href: MLEM.Graphics.ColorHelper.html#MLEM_Graphics_ColorHelper_FromHexString_System_String_ name: FromHexString nameWithType: ColorHelper.FromHexString fullName: MLEM.Graphics.ColorHelper.FromHexString - uid: System.String commentId: T:System.String parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: string nameWithType: string fullName: string nameWithType.vb: String fullName.vb: String name.vb: String - uid: MLEM.Graphics.ColorHelper.TryFromHexString* commentId: Overload:MLEM.Graphics.ColorHelper.TryFromHexString href: MLEM.Graphics.ColorHelper.html#MLEM_Graphics_ColorHelper_TryFromHexString_System_String_Microsoft_Xna_Framework_Color__ name: TryFromHexString nameWithType: ColorHelper.TryFromHexString fullName: MLEM.Graphics.ColorHelper.TryFromHexString - uid: System.Boolean commentId: T:System.Boolean parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean name: bool nameWithType: bool fullName: bool nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean - uid: MLEM.Graphics.ColorHelper.FromHsl* commentId: Overload:MLEM.Graphics.ColorHelper.FromHsl href: MLEM.Graphics.ColorHelper.html#MLEM_Graphics_ColorHelper_FromHsl_System_ValueTuple_System_Single_System_Single_System_Single__ name: FromHsl nameWithType: ColorHelper.FromHsl fullName: MLEM.Graphics.ColorHelper.FromHsl - uid: System.ValueTuple{System.Single,System.Single,System.Single} commentId: T:System.ValueTuple{System.Single,System.Single,System.Single} parent: System definition: System.ValueTuple`3 href: https://learn.microsoft.com/dotnet/api/system.single name: (float H, float S, float L) nameWithType: (float H, float S, float L) fullName: (float H, float S, float L) nameWithType.vb: (H As Single, S As Single, L As Single) fullName.vb: (H As Single, S As Single, L As Single) name.vb: (H As Single, S As Single, L As Single) spec.csharp: - name: ( - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: " " - uid: System.ValueTuple{System.Single,System.Single,System.Single}.H name: H href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.single,system.single,system.single-.h - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: " " - uid: System.ValueTuple{System.Single,System.Single,System.Single}.S name: S href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.single,system.single,system.single-.s - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: " " - uid: System.ValueTuple{System.Single,System.Single,System.Single}.L name: L href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.single,system.single,system.single-.l - name: ) spec.vb: - name: ( - uid: System.ValueTuple{System.Single,System.Single,System.Single}.H name: H href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.single,system.single,system.single-.h - name: " " - name: As - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: System.ValueTuple{System.Single,System.Single,System.Single}.S name: S href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.single,system.single,system.single-.s - name: " " - name: As - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: System.ValueTuple{System.Single,System.Single,System.Single}.L name: L href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.single,system.single,system.single-.l - name: " " - name: As - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) - uid: System.ValueTuple`3 commentId: T:System.ValueTuple`3 name: (T1, T2, T3) nameWithType: (T1, T2, T3) fullName: (T1, T2, T3) spec.csharp: - name: ( - name: T1 - name: ',' - name: " " - name: T2 - name: ',' - name: " " - name: T3 - name: ) spec.vb: - name: ( - name: T1 - name: ',' - name: " " - name: T2 - name: ',' - name: " " - name: T3 - name: ) - uid: System.Single commentId: T:System.Single parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single name: float nameWithType: float fullName: float nameWithType.vb: Single fullName.vb: Single name.vb: Single - uid: MLEM.Graphics.ColorHelper.FromHsv* commentId: Overload:MLEM.Graphics.ColorHelper.FromHsv href: MLEM.Graphics.ColorHelper.html#MLEM_Graphics_ColorHelper_FromHsv_System_ValueTuple_System_Single_System_Single_System_Single__ name: FromHsv nameWithType: ColorHelper.FromHsv fullName: MLEM.Graphics.ColorHelper.FromHsv