( value, position, enabled )
| 10398 | } |
| 10399 | |
| 10400 | function setBit( value, position, enabled ) { |
| 10401 | |
| 10402 | return enabled ? value | ( 1 << position ) : value & ( ~ ( 1 << position) ); |
| 10403 | |
| 10404 | } |
| 10405 | |
| 10406 | function getNormalIndex( normal ) { |
| 10407 |