UNPKG

three

Version:

JavaScript 3D library

10 lines (5 loc) 215 B
import { Fn } from '../../tsl/TSLBase.js'; const BRDF_Lambert = /*@__PURE__*/ Fn( ( inputs ) => { return inputs.diffuseColor.mul( 1 / Math.PI ); // punctual light } ); // validated export default BRDF_Lambert;