Refactor vector data type from document-legacy into node graph (#1057)

Add vector data type
This commit is contained in:
0HyperCube
2023-02-25 16:55:05 +00:00
committed by GitHub
parent d3038665ac
commit ba50614af1
20 changed files with 140 additions and 101 deletions

View File

@@ -7,6 +7,7 @@ extern crate alloc;
#[cfg(feature = "log")]
extern crate log;
pub mod consts;
pub mod generic;
pub mod ops;
pub mod structural;
@@ -22,6 +23,7 @@ pub mod raster;
pub mod vector;
use core::any::TypeId;
pub use raster::Color;
// pub trait Node: for<'n> NodeIO<'n> {
pub trait Node<'i, Input: 'i>: 'i {