Euclid 0.13.0
Prefix Reserveddotnet add package Euclid --version 0.13.0
NuGet\Install-Package Euclid -Version 0.13.0
<PackageReference Include="Euclid" Version="0.13.0" />
<PackageVersion Include="Euclid" Version="0.13.0" />
<PackageReference Include="Euclid" />
paket add Euclid --version 0.13.0
#r "nuget: Euclid, 0.13.0"
#addin nuget:?package=Euclid&version=0.13.0
#tool nuget:?package=Euclid&version=0.13.0
Euclid
Euclid is a 2D and 3D geometry library for F# without dependencies.
It is mostly focused on creating and manipulating primitives such as
points, vectors, lines, planes, boxes, and bounding boxes, and polylines.
For transformations of those there are rotations, quaternions, 4x4 and rigid ortho normal 4x3 matrices.
Written in F# and designed for use with F#,
all primitive types are immutable and functions are curried where appropriate.\
This library is intended to be used for design, construction and manufacturing.
So it is using double precision floating point numbers for all values. (While most geometry libraries for games use single precision floats.)
See Euclid.Rhino for converting form and to Rhino3D geometry.
This library can be compiled to JavaScript, Typescript, Rust or Python via Fable.
Where does Z point to?
This library assumes a right handed coordinate system with the Z-axis pointing up.
Just like Rhino3D, Blender, SketchUp, Revit and AutoCAD have it. But unlike Unity, Unreal or Maya.
Design decisions
In this library a point is a position in space, a vector is a direction in space.
A 4x4 transformation matrix applied to a vector will only rotate and scale the vector but not translate it.
You could think of this as a Homogeneous-coordinate-system where the last value is 0 (not 1), thus disabling translation.
A 2D point is called Pt
and a 3D point is called Pnt
.
A 2D vector is called Vc
and a 3D vector is called Vec
.\
This library has dedicated types for Unit vectors in 2D and 3D space.
They are called UnitVc
and UnitVec
respectively.
They are guaranteed to have a length of 1.0.
All types have respective modules with the same name for functions that operate on them.
Many functions exist as both a lowercase static member and a uppercase methods or property.
e.g.: Vec.unitized(v)
is the same as the v.Unitized
property.\
Full API Documentation
Changelog
see CHANGELOG.md
Build from source
Just run dotnet build
in the root directory.
Tests
All Tests run in both javascript and dotnet. The typescript result is verified with the typescript compiler. Go to the tests folder:
or:
cd Tests
For testing with .NET using Expecto run
dotnet run
for testing with Fable.Mocha run
npm test
License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- FSharp.Core (>= 6.0.7)
-
net6.0
- FSharp.Core (>= 6.0.7)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Euclid:
Package | Downloads |
---|---|
Euclid.Rhino
Utilities to use types from Euclid in Rhino3d |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.13.0 | 78 | 19 days ago |
0.12.0 | 426 | 4 months ago |
0.11.1 | 475 | 6 months ago |
0.11.0 | 131 | 6 months ago |
0.10.0 | 123 | 7 months ago |
0.9.0 | 640 | 9 months ago |
0.8.0 | 352 | 5/2/2024 |
0.7.0 | 122 | 4/29/2024 |
0.6.1 | 195 | 2/17/2024 |
0.6.1-a | 102 | 2/13/2024 |
0.5.0 | 291 | 1/6/2024 |
0.4.1 | 142 | 12/2/2023 |
0.4.0 | 131 | 11/28/2023 |
0.3.0 | 144 | 10/22/2023 |
0.2.1 | 285 | 2/26/2023 |
0.2.0 | 325 | 2/4/2023 |
0.1.0 | 302 | 1/21/2023 |
0.0.0 | 360 | 11/2/2022 |
### Added
* - don't offset on zero distance
* - lines touching check functions
* - more precomputed Cosine values
* - more ways to do Dot and Cross products
* - add notEquals functions
* - docs generation via FsFormatting library
### Changed
* - Rename Plane to NPlane
### Fixed
* - bug in finite line intersection