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

Version Path
joonsrenderer-1.3.1-java src/main/java/org/sunflow/core/Modifier.java
joonsrenderer-1.2.0-java src/main/java/org/sunflow/core/Modifier.java
joonsrenderer-1.1.3-java src/main/java/org/sunflow/core/Modifier.java
joonsrenderer-1.1.2-java src/main/java/org/sunflow/core/Modifier.java
joonsrenderer-1.1.1-java src/main/java/org/sunflow/core/Modifier.java
joonsrenderer-1.1-java src/main/java/org/sunflow/core/Modifier.java