shithub: 3dee

Download patch

ref: efdf130bc201bc50bd4442751e0f2c968e804a41
parent: 77cd44e91c0958fe74842c11adcabc4e001040e0
author: rodri <rgl@antares-labs.eu>
date: Tue Apr 7 11:58:56 EDT 2026

plot3: remove unnecessary return

this made plots of a single primitive fail to display.

--- a/plot3.c
+++ b/plot3.c
@@ -120,7 +120,6 @@
 		theplot.bbox.min = Pt3( 1e9,  1e9,  1e9, 1);
 		theplot.bbox.max = Pt3(-1e9, -1e9, -1e9, 1);
 		inited++;
-		return;
 	}
 
 	lastprim = &theplot.prims[theplot.nprims-1];
--