Browse Source

Merge pull request #11823 from mrdoob/WestLangley-plane

Plane.js: add comment
Mr.doob 8 years ago
parent
commit
9909b204e0
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/math/Plane.js

+ 2 - 0
src/math/Plane.js

@@ -7,6 +7,8 @@ import { Vector3 } from './Vector3';
 
 function Plane( normal, constant ) {
 
+	// normal is assumed to be normalized
+
 	this.normal = ( normal !== undefined ) ? normal : new Vector3( 1, 0, 0 );
 	this.constant = ( constant !== undefined ) ? constant : 0;