Fix lint errors

This commit is contained in:
Mark Tolmacs 2025-05-19 17:24:19 +02:00
parent 71e13c363e
commit 6919373c63
No known key found for this signature in database
2 changed files with 4 additions and 10 deletions

View File

@ -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

View File

@ -57,4 +57,4 @@
"gen:types": "rimraf types && tsc",
"build:esm": "rimraf dist && node ../../scripts/buildBase.js && yarn gen:types"
}
}
}