mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-07-31 19:43:45 +00:00
Add some additional image effect nodes (#869)
* Move the Subpath type to graphene-std * Add the transform subpath node * Delete selected nodes * Inserting node list on right click * Add several bitmap manipulator nodes * Convert add node to use f64 * Add posterize node * Rename names randomly * Fix naming * Exposure node * Fix typo * Adjust exposure node range * Comment out vector nodes * Adjust exposure range again * Posterise as ints * Rename input * Use >= in the to hsl function
This commit is contained in:
parent
59b638e4e4
commit
eb9848365f
50 changed files with 1310 additions and 481 deletions
|
@ -1,3 +1,7 @@
|
|||
// `macro_use` puts the log macros (`error!`, `warn!`, `debug!`, `info!` and `trace!`) in scope for the crate
|
||||
#[macro_use]
|
||||
extern crate log;
|
||||
|
||||
//pub mod value;
|
||||
//#![feature(const_type_name)]
|
||||
|
||||
|
@ -5,6 +9,7 @@
|
|||
pub mod memo;
|
||||
|
||||
pub mod raster;
|
||||
pub mod vector;
|
||||
|
||||
pub mod any;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue