blob: 7d7f7252200e786a692b069b67e433f76834faf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* iModel.java
*
* Created on February 27, 2008, 9:55 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package net.java.joglutils.model;
import net.java.joglutils.model.geometry.Model;
/**
*
* @author RodgersGB
*/
public interface iModel3DRenderer {
public void render(Object context, Model model);
public void debug(boolean value);
}
|