generated from ElnuDev/rust-project
Add margin controls, increase to 0.25in
This commit is contained in:
parent
52ed2c87d3
commit
31572568da
1 changed files with 8 additions and 6 deletions
|
@ -31,21 +31,22 @@ enum Error {
|
|||
fn positions<'a>(
|
||||
keys: &'a Vec<Key>,
|
||||
size: SVGMeasure,
|
||||
margin: SVGMeasure,
|
||||
padding: SVGMeasure,
|
||||
dimensions: &DocumentDimensions,
|
||||
) -> Vec<(&'a Key<'a>, (SVGMeasure, SVGMeasure))> {
|
||||
let grid = size + padding;
|
||||
let mut x = padding;
|
||||
let mut y = padding;
|
||||
let mut x = margin;
|
||||
let mut y = margin;
|
||||
let mut positions = Vec::with_capacity(keys.len());
|
||||
for key in keys {
|
||||
if let Key::Break = key {
|
||||
x = padding;
|
||||
x = margin;
|
||||
y = y + grid;
|
||||
continue;
|
||||
}
|
||||
if x + grid > dimensions.width {
|
||||
x = padding;
|
||||
if x + grid > dimensions.width - margin {
|
||||
x = margin;
|
||||
y = y + grid;
|
||||
}
|
||||
positions.push((key, (x, y)));
|
||||
|
@ -66,8 +67,9 @@ fn main() -> Result<(), Error> {
|
|||
};
|
||||
let box_size = SVGMeasure::new(14.0, SVGUnit::Millimeter);
|
||||
let padding = SVGMeasure::new(2.5, SVGUnit::Millimeter);
|
||||
let margin = SVGMeasure::new(0.25, SVGUnit::Inch);
|
||||
let document = DocumentTemplate {
|
||||
positions: positions(&KEYS, box_size, padding, &dimensions),
|
||||
positions: positions(&KEYS, box_size, margin, padding, &dimensions),
|
||||
dimensions: &dimensions,
|
||||
box_size,
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue