rename to tono

This commit is contained in:
2026-03-29 22:51:58 -07:00
parent 961b5d08c8
commit 52da360804
33 changed files with 82 additions and 82 deletions

View File

@@ -1,5 +1,5 @@
"""
Shared helper functions for argonode nodes.
Shared helper functions for tono nodes.
"""
from __future__ import annotations

View File

@@ -251,7 +251,7 @@ class Save:
length = float(np.linalg.norm(n))
return n / length if length > 0 else np.array([0.0, 1.0, 0.0], dtype=np.float32)
lines = ["solid argonode"]
lines = ["solid tono"]
vertices = np.asarray(mesh.vertices, dtype=np.float32)
for face in np.asarray(mesh.faces, dtype=np.int32):
a, b, c = vertices[int(face[0])], vertices[int(face[1])], vertices[int(face[2])]
@@ -263,7 +263,7 @@ class Save:
lines.append(f" vertex {c[0]} {c[1]} {c[2]}")
lines.append(" endloop")
lines.append(" endfacet")
lines.append("endsolid argonode")
lines.append("endsolid tono")
path.write_text("\n".join(lines) + "\n", encoding="utf-8")
def _send_warning(self, message: str):