Documentation

This commit is contained in:
Elod Csirmaz 2024-11-30 22:45:02 +00:00
parent 9d24a2c85f
commit bb7155a5fd
25 changed files with 88 additions and 21 deletions

View file

@ -22,7 +22,7 @@ class Point:
return Point(coords)
def render(self) -> str:
"""Render the point into a SCAD script"""
"""Render the object into OpenSCAD code"""
return "[" + (",".join([str(c) for c in self.c])) + "]"
def render_stl(self) -> str: