Cesium-Examples/three/examples/jsm/nodes/core/LightingModel.js

16 lines
293 B
JavaScript
Raw Normal View History

2025-03-11 08:25:45 +00:00
class LightingModel {
init( /*input, stack, builder*/ ) { }
direct( /*input, stack, builder*/ ) { }
indirectDiffuse( /*input, stack, builder*/ ) { }
indirectSpecular( /*input, stack, builder*/ ) { }
ambientOcclusion( /*input, stack, builder*/ ) { }
}
export default LightingModel;