From 6bc3474d9e0151eb024dd3e228590368a4dc3124 Mon Sep 17 00:00:00 2001 From: Elod Csirmaz Date: Sun, 1 Dec 2024 16:37:15 +0000 Subject: [PATCH] Update readme --- README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4f61cb2..a263402 100644 --- a/README.md +++ b/README.md @@ -42,9 +42,9 @@ $ openscad example.scad ### Computational geometry -Usual computational geometry functions in the +Usual computational geometry functions are implemented in the [`Point` class](https://csirmaz.github.io/openscad-py/point.html) -that work in an arbitrary number of dimensions. Overloads for algebraic operators. Examples: +that work in an arbitrary number of dimensions. Overloads algebraic operators. Examples: ```python distance = (Point((0, 0, 1)) - Point((1, 0, 1))).length() @@ -124,9 +124,6 @@ colored_moved_cube = Cube([1, 1, 1]).move([2, 0, 0]).color(r=1, g=0, b=0) Once the desired object has been created, call `render()` on the final object to obtain the OpenSCAD code. -For the full list of convenience functions, see -https://csirmaz.github.io/openscad-py/object_.html . - ## Reference See https://csirmaz.github.io/openscad-py/