Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2022-07-08 23:35:18 +0300
committerHans Goudey <h.goudey@me.com>2022-07-08 23:35:18 +0300
commit111bf7d76b080555fd524b2b4a138bcad2e5b206 (patch)
treee9e14ca4102ec0c73261745a9ff7b7aa2de1cc57 /intern/cycles/blender/curves.cpp
parentb4db5a93bcf92b731d0e358602816cce2dbbd7cb (diff)
parent2ee68917287627a3803a8eae91d4d788ac316185 (diff)
Merge branch 'master' into temp-legacy-mesh-format-option
Diffstat (limited to 'intern/cycles/blender/curves.cpp')
-rw-r--r--intern/cycles/blender/curves.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/blender/curves.cpp b/intern/cycles/blender/curves.cpp
index b01cb85711a..10012720bd8 100644
--- a/intern/cycles/blender/curves.cpp
+++ b/intern/cycles/blender/curves.cpp
@@ -868,7 +868,7 @@ static void export_hair_curves(Scene *scene,
for (int i = 0; i < num_points; i++) {
const float3 co = get_float3(b_curves.position_data[first_point_index + i].vector());
const float radius = b_attr_radius ? b_attr_radius->data[first_point_index + i].value() :
- 0.0f;
+ 0.005f;
hair->add_curve_key(co, radius);
if (attr_intercept) {