소스 검색

Color chromatic lerp function

Remi 7 년 전
부모
커밋
10bb930d48
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/math/Color.js

+ 2 - 2
src/math/Color.js

@@ -540,8 +540,8 @@ Object.assign( Color.prototype, {
 		return this;
 
 	},
-	
-	lerpChromatic: function ( color, alpha  ) {
+
+	lerpChromatic: function ( color, alpha ) {
 
 		var hslA = this.getHSL();
 		var hslB = color.getHSL();