projet-rendu/Texture.java

36 lines
779 B
Java
Raw Normal View History

2022-04-12 10:08:58 +00:00
import java.awt.*;
import java.awt.image.*;
import java.io.*;
import javax.imageio.ImageIO;
/**
* 2D Texture class.
*/
public class Texture {
int width;
int height;
BufferedImage image;
/**
* Constructs a new Texture with the content of the image at @path.
*/
public Texture(String path) throws Exception {
image = ImageIO.read(new File(path));
width = image.getWidth();
height = image.getHeight();
2022-04-12 10:08:58 +00:00
}
/**
* Samples the texture at texture coordinates (u,v), using nearest neighboor
* interpolation
2022-04-12 10:08:58 +00:00
* u and v and wrapped around to [0,1].
*/
public Color sample(double u, double v) {
2022-04-12 10:08:58 +00:00
/* A COMPLETER */
2022-04-12 10:08:58 +00:00
return new Color(0, 0, 0);
2022-04-12 10:08:58 +00:00
}
}