From 3889931cb9227ee7291bd0371025656aaaec13a5 Mon Sep 17 00:00:00 2001 From: Noeri Huisman <8823461+mrxz@users.noreply.github.com> Date: Fri, 8 May 2026 12:14:41 +0200 Subject: [PATCH] Ignore obj_info header lines in PLY files --- rust/spark-lib/src/ply.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/spark-lib/src/ply.rs b/rust/spark-lib/src/ply.rs index a334f2f9..57681c85 100644 --- a/rust/spark-lib/src/ply.rs +++ b/rust/spark-lib/src/ply.rs @@ -381,7 +381,7 @@ fn parse_header(header: &str) -> anyhow::Result { return Err(anyhow!("Unsupported PLY version: {}", fields[2])); } }, - "comment" => { + "comment" | "obj_info" => { // ignore }, "element" if fields.len() == 3 => {