From 12bd53c0ff9489a08feb6dac2d18b63a6350ba67 Mon Sep 17 00:00:00 2001 From: Elod Csirmaz Date: Sun, 1 Dec 2024 16:33:15 +0000 Subject: [PATCH] Updated links --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0c252af..4f61cb2 100644 --- a/README.md +++ b/README.md @@ -42,8 +42,9 @@ $ openscad example.scad ### Computational geometry -Usual computational geometry functions in the `Point` class that work in an arbitrary number of dimensions. -Overloads for algebraic operators. Examples: +Usual computational geometry functions 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: ```python distance = (Point((0, 0, 1)) - Point((1, 0, 1))).length()