mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-17 23:38:06 +08:00
* Add rotation around the center * Document transform centred * Fix drawing hexagon on rotated document * Format * Fix translation on rotated document * Remove logging * Rotate around centre of viewport * Rotate with shift + MMB drag * Zoom with +/- keys * Rotation input field * Implement frontend zoom buttons * Zoom with ctrl + MMB * Format * Update number inputs * Require Ctrl + Plus / Minus key * Ctrl scroll * Update zoom -> Multiply Zoom * Fix typo * More fixing typo * Remove :v-on * Add mouse scroll X * Scrolling on document * Refactor * Format * Fix ctrl + plus/minus to zoom * Reduce zoom sensitivity * Ctrl + shift + mmb drag = snap rotate * Further reduce zoom speed * Add ctrl + number key to change zoom * Switch Ctrl and Shift for zoom and rotate * Fix compile errors * Format JS * Add increment to snap angle * Edit getting layerdata functions * Pass viewport size directily into create_document_transform_from_layerdata * Add to_dvec2() * Refactor get_transform * Get -> Calculate * Add consts * Use to_radians * Remove get from function names * Use .entry when getting layerdata that does not exist * Fix distance scroll calculations * Fix zooming. * Remove 'Violation' in chrome * Fix compile errors
75 lines
1.2 KiB
Rust
75 lines
1.2 KiB
Rust
use crate::{
|
|
layers::{style, Layer},
|
|
LayerId,
|
|
};
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[repr(C)]
|
|
#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)]
|
|
pub enum Operation {
|
|
AddEllipse {
|
|
path: Vec<LayerId>,
|
|
insert_index: isize,
|
|
transform: [f64; 6],
|
|
style: style::PathStyle,
|
|
},
|
|
AddRect {
|
|
path: Vec<LayerId>,
|
|
insert_index: isize,
|
|
transform: [f64; 6],
|
|
style: style::PathStyle,
|
|
},
|
|
AddLine {
|
|
path: Vec<LayerId>,
|
|
insert_index: isize,
|
|
transform: [f64; 6],
|
|
style: style::PathStyle,
|
|
},
|
|
AddPen {
|
|
path: Vec<LayerId>,
|
|
transform: [f64; 6],
|
|
insert_index: isize,
|
|
points: Vec<(f64, f64)>,
|
|
style: style::PathStyle,
|
|
},
|
|
AddShape {
|
|
path: Vec<LayerId>,
|
|
insert_index: isize,
|
|
transform: [f64; 6],
|
|
equal_sides: bool,
|
|
sides: u8,
|
|
style: style::PathStyle,
|
|
},
|
|
DeleteLayer {
|
|
path: Vec<LayerId>,
|
|
},
|
|
DuplicateLayer {
|
|
path: Vec<LayerId>,
|
|
},
|
|
PasteLayer {
|
|
layer: Layer,
|
|
path: Vec<LayerId>,
|
|
},
|
|
AddFolder {
|
|
path: Vec<LayerId>,
|
|
},
|
|
MountWorkingFolder {
|
|
path: Vec<LayerId>,
|
|
},
|
|
TransformLayer {
|
|
path: Vec<LayerId>,
|
|
transform: [f64; 6],
|
|
},
|
|
SetLayerTransform {
|
|
path: Vec<LayerId>,
|
|
transform: [f64; 6],
|
|
},
|
|
DiscardWorkingFolder,
|
|
ClearWorkingFolder,
|
|
CommitTransaction,
|
|
ToggleVisibility {
|
|
path: Vec<LayerId>,
|
|
},
|
|
}
|