[Bf-blender-cvs] [feaed44ef64] blender-v2.90-release: GPencil: Fix unreported missing last point in NURBS conversion

Antonio Vazquez noreply at git.blender.org
Fri Jul 31 13:47:19 CEST 2020


Commit: feaed44ef6435c0cc9d5c539b9945a5f6455de80
Author: Antonio Vazquez
Date:   Fri Jul 31 13:47:12 2020 +0200
Branches: blender-v2.90-release
https://developer.blender.org/rBfeaed44ef6435c0cc9d5c539b9945a5f6455de80

GPencil: Fix unreported missing last point in NURBS conversion

The last point of the curve was missing.

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

M	source/blender/blenkernel/intern/gpencil_curve.c

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

diff --git a/source/blender/blenkernel/intern/gpencil_curve.c b/source/blender/blenkernel/intern/gpencil_curve.c
index 66e9e2184c1..a7adbed6c4b 100644
--- a/source/blender/blenkernel/intern/gpencil_curve.c
+++ b/source/blender/blenkernel/intern/gpencil_curve.c
@@ -363,7 +363,7 @@ static void gpencil_convert_spline(Main *bmain,
         BKE_nurb_makeCurve(nu, coord_array, NULL, NULL, NULL, resolu, sizeof(float[3]));
 
         /* Allocate memory for storage points. */
-        gps->totpoints = nurb_points - 1;
+        gps->totpoints = nurb_points;
         gps->points = MEM_callocN(sizeof(bGPDspoint) * gps->totpoints, "gp_stroke_points");
 
         /* Add points. */



More information about the Bf-blender-cvs mailing list