Browse Source

Add comment

WestLangley 8 years ago
parent
commit
cc3fc88eba
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 ) {
 function Plane( normal, constant ) {
 
 
+	// normal is assumed to be normalized
+
 	this.normal = ( normal !== undefined ) ? normal : new Vector3( 1, 0, 0 );
 	this.normal = ( normal !== undefined ) ? normal : new Vector3( 1, 0, 0 );
 	this.constant = ( constant !== undefined ) ? constant : 0;
 	this.constant = ( constant !== undefined ) ? constant : 0;