📄 sceneparser.java
字号:
package org.sunflow.core;
import org.sunflow.SunflowAPI;
/**
* Simple interface to allow for scene creation from arbitrary file formats.
*/
public interface SceneParser {
/**
* Parse the specified file to create a scene description into the provided
* {@link SunflowAPI} object.
*
* @param filename filename to parse
* @param api scene to parse the file into
* @return <code>true</code> upon sucess, or <code>false</code> if
* errors have occured.
*/
public boolean parse(String filename, SunflowAPI api);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -