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
Copy file name to clipboardExpand all lines: editor/src/messages/portfolio/document/node_graph/node_properties.rs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ use graphene_std::table::{Table, TableRow};
26
26
use graphene_std::text::{Font,TextAlign};
27
27
use graphene_std::transform::{Footprint,ReferencePoint,Transform};
28
28
use graphene_std::vector::QRCodeErrorCorrectionLevel;
29
-
use graphene_std::vector::misc::{ArcType,CentroidType,ExtrudeJoiningAlgorithm,GridType,MergeByDistanceAlgorithm,PointSpacingType,SpiralType};
29
+
use graphene_std::vector::misc::{ArcType,CentroidType,ExtrudeJoiningAlgorithm,GridType,MergeByDistanceAlgorithm,PointSpacingType,RowsOrColumns,SpiralType};
30
30
use graphene_std::vector::style::{Fill,FillChoice,FillType,GradientStops,GradientType,PaintOrder,StrokeAlign,StrokeCap,StrokeJoin};
Copy file name to clipboardExpand all lines: node-graph/nodes/vector/src/vector_nodes.rs
+120-1Lines changed: 120 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,4 @@
1
+
use core::cmp::Ordering;
1
2
use core::f64::consts::PI;
2
3
use core::hash::{Hash,Hasher};
3
4
use core_types::bounds::{BoundingBox,RenderBoundingBox};
@@ -21,7 +22,7 @@ use vector_types::vector::algorithms::bezpath_algorithms::{self, TValue, evaluat
21
22
use vector_types::vector::algorithms::merge_by_distance::MergeByDistanceExt;
22
23
use vector_types::vector::algorithms::offset_subpath::offset_bezpath;
23
24
use vector_types::vector::algorithms::spline::{solve_spline_first_handle_closed, solve_spline_first_handle_open};
24
-
use vector_types::vector::misc::{CentroidType,ExtrudeJoiningAlgorithm, bezpath_from_manipulator_groups, bezpath_to_manipulator_groups, point_to_dvec2};
25
+
use vector_types::vector::misc::{CentroidType,ExtrudeJoiningAlgorithm,RowsOrColumns,bezpath_from_manipulator_groups, bezpath_to_manipulator_groups, point_to_dvec2};
25
26
use vector_types::vector::misc::{MergeByDistanceAlgorithm,PointSpacingType, is_linear};
26
27
use vector_types::vector::misc::{handles_to_segment, segment_to_handles};
27
28
use vector_types::vector::style::{Fill,Gradient,GradientStops,Stroke};
0 commit comments