Use Color in View

This commit is contained in:
Joscha 2024-03-05 00:21:48 +01:00
parent 097f4ee548
commit f3f8af39d4
2 changed files with 6 additions and 4 deletions

View file

@ -1,4 +1,4 @@
use crate::{Buffer, Rect, Vec2};
use crate::{Buffer, Color, Rect, Vec2};
// TODO Add Orientation (from inkfo)
@ -38,10 +38,12 @@ impl<'a, C> View<'a, C> {
pub fn at(&self, pos: Vec2) -> Option<&C> {
self.buffer.at(self.pos_to_buffer_pos(pos))
}
}
impl<C: Color> View<'_, C> {
pub fn set(&mut self, pos: Vec2, color: C) {
if let Some(pixel) = self.buffer.at_mut(self.pos_to_buffer_pos(pos)) {
*pixel = color;
*pixel = color.over(*pixel);
}
}
}