-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
E-mediumExperience: MediumExperience: MediumE-mentorExperience: Has instructions on how to get started with a fixExperience: Has instructions on how to get started with a fixgood first issueGood for newcomersGood for newcomers
Milestone
Description
width
and height
variables throughout the codebase should be replaced with a serializable dimensions struct (best put in the src/util/frame.rs
file):
struct Dimensions {
width: usize,
height: usize,
}
This should include the Frame
struct:
Lines 17 to 22 in 0c7ddbb
#[derive(Debug, Clone)] | |
pub struct Frame<T> { | |
width: usize, | |
height: usize, | |
buf: Vec<T>, | |
} |
And the jsonnet API
Metadata
Metadata
Assignees
Labels
E-mediumExperience: MediumExperience: MediumE-mentorExperience: Has instructions on how to get started with a fixExperience: Has instructions on how to get started with a fixgood first issueGood for newcomersGood for newcomers