Bézier-rs: Add utils to subpath (#1058)

* Add utils to bezier-rs subpath

* Apply code review changes

* Remove tan from constant

* Fix compile

* Fix tests
This commit is contained in:
0HyperCube
2023-03-02 16:48:09 +00:00
committed by GitHub
parent 9dcabc053b
commit 0fb2c4d06c
12 changed files with 206 additions and 10 deletions

View File

@@ -281,7 +281,7 @@ impl NodeGraphMessageHandler {
node_id: link_start,
output_index: link_start_index,
// TODO: add ui for lambdas
lambda,
lambda: _,
} = *input
{
Some(FrontendNodeLink {

View File

@@ -6,7 +6,7 @@ use crate::messages::prelude::*;
use document_legacy::{document::pick_safe_imaginate_resolution, layers::layer_info::LayerDataType};
use document_legacy::{LayerId, Operation};
use graph_craft::document::{generate_uuid, value::TaggedValue, NodeId, NodeInput, NodeNetwork, NodeOutput};
use graph_craft::document::{generate_uuid, NodeId, NodeInput, NodeNetwork, NodeOutput};
use graph_craft::executor::Compiler;
use graphene_core::raster::{Image, ImageFrame};
use interpreted_executor::executor::DynamicExecutor;