org.jeometry.geom3D.textured.TextureManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeometry-api Show documentation
Show all versions of jeometry-api Show documentation
Jeometry, a Mathematic and Geometry library for Java
package org.jeometry.geom3D.textured;
import java.util.List;
/**
* A texture manager is an object that can handle a {@link Texture texture} list.
* @author Julien Seinturier - (c) 2016 - JOrigin project - http:/www.jorigin.org
* @since 1.0.0
*/
public interface TextureManager {
/**
* Get the {@link Texture textures} handled by this texture manager.
* @return the {@link Texture textures} managed by this texture manager.
*/
public List getTextures();
/**
* Set the {@link Texture textures} handled by this texture manager.
* @param textures the {@link Texture textures} managed by this texture manager.
*/
public void setTextures(List textures);
}