?? modifier.java
字號:
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);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -