export u/v/max/min for TextureBounds

This commit is contained in:
Colin Sherratt
2015-07-05 02:57:28 -04:00
parent 85e86adc6b
commit 44c1db2f27

View File

@ -45,13 +45,12 @@ impl Eye {
}
}
#[derive(Debug, Copy, Clone, PartialEq)]
pub struct TextureBounds {
u_min: f32,
u_max: f32,
v_min: f32,
v_max: f32
pub u_min: f32,
pub u_max: f32,
pub v_min: f32,
pub v_max: f32
}
impl TextureBounds {