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
@@ -26,6 +27,7 @@ use graphene_std::vector::{PointId, Vector, VectorModificationType};
26
27
use interpreted_executor::dynamic_executor::ResolvedDocumentNodeTypes;
27
28
use interpreted_executor::node_registry::NODE_REGISTRY;
28
29
use kurbo::BezPath;
30
+
use memo_network::MemoNetwork;
29
31
use serde_json::{Value, json};
30
32
use std::collections::{HashMap,HashSet,VecDeque};
31
33
use std::hash::{DefaultHasher,Hash,Hasher};
@@ -36,7 +38,7 @@ use std::ops::Deref;
36
38
pubstructNodeNetworkInterface{
37
39
/// The node graph that generates this document's artwork. It recursively stores its sub-graphs, so this root graph is the whole snapshot of the document content.
38
40
/// A public mutable reference should never be created. It should only be mutated through custom setters which perform the necessary side effects to keep network_metadata in sync
39
-
network:NodeNetwork,
41
+
network:MemoNetwork,
40
42
/// Stores all editor information for a NodeNetwork. Should automatically kept in sync by the setter methods when changes to the document network are made.
41
43
network_metadata:NodeNetworkMetadata,
42
44
// TODO: Wrap in TransientMetadata Option
@@ -71,7 +73,7 @@ impl PartialEq for NodeNetworkInterface {
71
73
implNodeNetworkInterface{
72
74
/// Add DocumentNodePath input to the PathModifyNode protonode
0 commit comments