Crude implementation of matrices using nalgebra

This commit is contained in:
2023-12-19 15:37:32 +01:00
parent 2e44890c53
commit 8a2c675d71
7 changed files with 287 additions and 84 deletions

View File

@@ -46,16 +46,6 @@ pub enum Instruction {
},
}
impl Instruction {
pub fn supported_source(&self, src: File) -> bool {
todo!()
}
pub fn supported_destination(&self, src: File) -> bool {
todo!()
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub enum File {
GrfA { index: u8 },