Sha256: 9e5b513c0fae14ce4366bdb2fb8c4d0bce1c67ed0df7199570d7425793429368
Contents?: true
Size: 455 Bytes
Versions: 6
Compression:
Stored size: 455 Bytes
Contents
package org.sunflow.core; /** * This represents a surface modifier. This is run on each instance prior to * shading and can modify the shading state in arbitrary ways to provide effects * such as bump mapping. */ public interface Modifier extends RenderObject { /** * Modify the shading state for the point to be shaded. * * @param state shading state to modify */ public void modify(ShadingState state); }
Version data entries
6 entries across 6 versions & 1 rubygems