( value, min, max )
| 12376 | } |
| 12377 | |
| 12378 | function smoothstep( value, min, max ) { |
| 12379 | |
| 12380 | var x = ( value - min ) / ( max - min ); |
| 12381 | return x * x * ( 3 - 2 * x ); |
| 12382 | |
| 12383 | } |
| 12384 | |
| 12385 | function normalToComponent( normal ) { |
| 12386 |
no outgoing calls
no test coverage detected