From 229a321c3498e5bc479813af84889ec4c9551883 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Date: Wed, 20 Mar 2024 15:35:53 -0400 Subject: [PATCH] fix: add a header message --- modules/core/include/openstl/core/stl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/include/openstl/core/stl.h b/modules/core/include/openstl/core/stl.h index 3f0c0a5..e37ca0c 100644 --- a/modules/core/include/openstl/core/stl.h +++ b/modules/core/include/openstl/core/stl.h @@ -91,7 +91,7 @@ namespace openstl template void serializeBinaryStl(const Container& triangles, Stream& stream) { // Write header (80 bytes for comments) - char header[80] = {0}; + char header[80] = "STL Exported by OpenSTL [https://github.com/Innoptech/OpenSTL]"; stream.write(header, 80); // Write triangle count (4 bytes)