Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document the ranges of FromHSV's parameters #12901

Merged
merged 1 commit into from
Aug 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/dev/core/src/Maths/math.color.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down