@@ -97,9 +97,9 @@ public static synchronized int modHsv(int color, double hue, double saturation,
9797 * Assumes r, g, and b are contained in the set [0, 255] and
9898 * returns h, s, and l in the set [0, 1].
9999 *
100- * @param Number r The red color value
101- * @param Number g The green color value
102- * @param Number b The blue color value
100+ * @param r The red color value
101+ * @param g The green color value
102+ * @param b The blue color value
103103 * @return Array The HSL representation
104104 */
105105 public static Vec3 rgbToHsl (double r , double g , double b , Vec3 out ) {
@@ -140,9 +140,9 @@ public static Vec3 rgbToHsl(double r, double g, double b) {
140140 * Assumes h, s, and l are contained in the set [0, 1] and
141141 * returns r, g, and b in the set [0, 255].
142142 *
143- * @param Number h The hue
144- * @param Number s The saturation
145- * @param Number l The lightness
143+ * @param h The hue
144+ * @param s The saturation
145+ * @param l The lightness
146146 * @return Array The RGB representation
147147 */
148148 public static int hslToRgb (double h , double s , double l , Vec3 out ) {
@@ -184,9 +184,9 @@ static double hue2rgb(double p, double q, double t) {
184184 * Assumes r, g, and b are contained in the set [0, 255] and
185185 * returns h, s, and v in the set [0, 1].
186186 *
187- * @param Number r The red color value
188- * @param Number g The green color value
189- * @param Number b The blue color value
187+ * @param r The red color value
188+ * @param g The green color value
189+ * @param b The blue color value
190190 * @return Array The HSV representation
191191 */
192192 public static Vec3 rgbToHsv (double r , double g , double b , Vec3 out ) {
0 commit comments