Преглед на файлове

Merge pull request #17111 from EliasHasle/patch-10

PolyhedronBufferGeometry: private function appplyRadius -> applyRadius
Mr.doob преди 6 години
родител
ревизия
fa17680328
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      src/geometries/PolyhedronGeometry.js

+ 2 - 2
src/geometries/PolyhedronGeometry.js

@@ -63,7 +63,7 @@ function PolyhedronBufferGeometry( vertices, indices, radius, detail ) {
 
 	// all vertices should lie on a conceptual sphere with a given radius
 
-	appplyRadius( radius );
+	applyRadius( radius );
 
 	// finally, create the uv data
 
@@ -176,7 +176,7 @@ function PolyhedronBufferGeometry( vertices, indices, radius, detail ) {
 
 	}
 
-	function appplyRadius( radius ) {
+	function applyRadius( radius ) {
 
 		var vertex = new Vector3();