[Bf-blender-cvs] [b66c21f8b0a] master: Geometry Nodes: Use same shape as mesh line in curve line node

Hans Goudey noreply at git.blender.org
Mon Jul 5 19:42:41 CEST 2021


Commit: b66c21f8b0a73c9ad58eb3295b29fe4fadfc4bc8
Author: Hans Goudey
Date:   Mon Jul 5 12:42:33 2021 -0500
Branches: master
https://developer.blender.org/rBb66c21f8b0a73c9ad58eb3295b29fe4fadfc4bc8

Geometry Nodes: Use same shape as mesh line in curve line node

The line starts at the origin and ends at (0,0,1m), just like the mesh node.

===================================================================

M	source/blender/nodes/geometry/nodes/node_geo_curve_primitive_line.cc

===================================================================

diff --git a/source/blender/nodes/geometry/nodes/node_geo_curve_primitive_line.cc b/source/blender/nodes/geometry/nodes/node_geo_curve_primitive_line.cc
index 7aeb077d1d6..04a7fc7e5df 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_curve_primitive_line.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_curve_primitive_line.cc
@@ -23,9 +23,9 @@
 
 static bNodeSocketTemplate geo_node_curve_primitive_line_in[] = {
     {SOCK_VECTOR, N_("Start"), 0.0f, 0.0f, 0.0f, 0.0f, -FLT_MAX, FLT_MAX, PROP_TRANSLATION},
-    {SOCK_VECTOR, N_("End"), 0.0f, 2.0f, 0.0f, 0.0f, -FLT_MAX, FLT_MAX, PROP_TRANSLATION},
-    {SOCK_VECTOR, N_("Direction"), 0.0f, 1.0f, 0.0f, 0.0f, -FLT_MAX, FLT_MAX},
-    {SOCK_FLOAT, N_("Length"), 2.0f, 0.0f, 0.0f, 0.0f, -FLT_MAX, FLT_MAX, PROP_DISTANCE},
+    {SOCK_VECTOR, N_("End"), 0.0f, 0.0f, 1.0f, 0.0f, -FLT_MAX, FLT_MAX, PROP_TRANSLATION},
+    {SOCK_VECTOR, N_("Direction"), 0.0f, 0.0f, 1.0f, 0.0f, -FLT_MAX, FLT_MAX},
+    {SOCK_FLOAT, N_("Length"), 1.0f, 0.0f, 0.0f, 0.0f, -FLT_MAX, FLT_MAX, PROP_DISTANCE},
     {-1, ""},
 };



More information about the Bf-blender-cvs mailing list