You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use graph_craft::document::{DocumentNode,DocumentNodeImplementation,NodeId,NodeInput,NodeNetwork,OldDocumentNodeImplementation,OldNodeNetwork, value::TaggedValue};
13
-
use graph_craft::{Type, concrete};
12
+
use graph_craft::document::value::TaggedValue;
13
+
use graph_craft::document::{DocumentNode,DocumentNodeImplementation,NodeId,NodeInput,NodeNetwork,OldDocumentNodeImplementation,OldNodeNetwork};
14
+
use graph_craft::{concrete,Type};
14
15
use graphene_std::renderer::{ClickTarget,Quad};
15
16
use graphene_std::transform::Footprint;
16
17
use graphene_std::vector::{PointId,VectorData,VectorModificationType};
17
-
use interpreted_executor::{dynamic_executor::ResolvedDocumentNodeTypes, node_registry::NODE_REGISTRY};
18
+
use interpreted_executor::dynamic_executor::ResolvedDocumentNodeTypes;
19
+
use interpreted_executor::node_registry::NODE_REGISTRY;
18
20
19
21
use glam::{DAffine2,DVec2,IVec2};
20
-
use serde_json::{Value, json};
22
+
use serde_json::{json,Value};
21
23
use std::collections::{HashMap,HashSet,VecDeque};
22
24
use std::hash::{DefaultHasher,Hash,Hasher};
23
25
@@ -656,7 +658,11 @@ impl NodeNetworkInterface {
656
658
// For example a node input of (Footprint) -> VectorData would not be compatible with () -> VectorData
0 commit comments