From 6919373c6396fedfd80490045ce647ac1f6c5534 Mon Sep 17 00:00:00 2001 From: Mark Tolmacs Date: Mon, 19 May 2025 17:24:19 +0200 Subject: [PATCH] Fix lint errors --- packages/math/README.md | 12 +++--------- packages/math/package.json | 2 +- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/packages/math/README.md b/packages/math/README.md index 84027cb3f..93abd9ef8 100644 --- a/packages/math/README.md +++ b/packages/math/README.md @@ -1,14 +1,8 @@ # @excalidraw/math - 2D Vector Graphics Math Library -The package contains a collection of (mostly) independent functions providing -the mathematical basis for Excalidraw's rendering, hit detection, bounds -checking and anything using math underneath. -The philosophy of the library is to be self-contained and therefore there is no -dependency on any other package. It only contains pure functions. It also -prefers analytical solutions vs numberical wherever possible. Since this -library is used in a high performance context, we might chose to use a numerical -approximation, even if an analytical solution is available to preserve -performance. +The package contains a collection of (mostly) independent functions providing the mathematical basis for Excalidraw's rendering, hit detection, bounds checking and anything using math underneath. + +The philosophy of the library is to be self-contained and therefore there is no dependency on any other package. It only contains pure functions. It also prefers analytical solutions vs numberical wherever possible. Since this library is used in a high performance context, we might chose to use a numerical approximation, even if an analytical solution is available to preserve performance. ## Install diff --git a/packages/math/package.json b/packages/math/package.json index cd856c027..65473cbbc 100644 --- a/packages/math/package.json +++ b/packages/math/package.json @@ -57,4 +57,4 @@ "gen:types": "rimraf types && tsc", "build:esm": "rimraf dist && node ../../scripts/buildBase.js && yarn gen:types" } -} \ No newline at end of file +}