Expand description
The Node trait — what every operation in the graph implements.
Structs§
- Influence
Ctx - What a node needs in order to say how far outside the canvas its
input geometry can still matter — see
Node::influence_pad. - InkReach
- How far a brush puts ink from the path it is dragged along.
Traits§
- Node
- One operation in the DAG. Stored as
Box<dyn Node>insidecrate::Graph; the graph never mutates a node after construction.