From 9f3aba86727c8f2eb9aace021de3a30dc94b505c Mon Sep 17 00:00:00 2001 From: BlakeOne <30273164+BlakeOne@users.noreply.github.com> Date: Thu, 25 Aug 2022 08:49:44 -0700 Subject: [PATCH] Add param ranges to documentation of FromHSV --- packages/dev/core/src/Maths/math.color.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/dev/core/src/Maths/math.color.ts b/packages/dev/core/src/Maths/math.color.ts index ce854b7d7e2..37eda388bcd 100644 --- a/packages/dev/core/src/Maths/math.color.ts +++ b/packages/dev/core/src/Maths/math.color.ts @@ -452,9 +452,9 @@ export class Color3 { /** * Converts Hue, saturation and value to a new Color3 (RGB) - * @param hue defines the hue - * @param saturation defines the saturation - * @param value defines the value + * @param hue defines the hue (value between 0 and 360) + * @param saturation defines the saturation (value between 0 and 1) + * @param value defines the value (value between 0 and 1) * @returns a new Color3 object */ public static FromHSV(hue: number, saturation: number, value: number): Color3 {