Euclid 0.13.0

Prefix Reserved
dotnet add package Euclid --version 0.13.0
                    
NuGet\Install-Package Euclid -Version 0.13.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Euclid" Version="0.13.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Euclid" Version="0.13.0" />
                    
Directory.Packages.props
<PackageReference Include="Euclid" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Euclid --version 0.13.0
                    
#r "nuget: Euclid, 0.13.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Euclid&version=0.13.0
                    
Install Euclid as a Cake Addin
#tool nuget:?package=Euclid&version=0.13.0
                    
Install Euclid as a Cake Tool

Logo

Euclid

Euclid on nuget.org Build Status Docs Build Status Test Status Hits license code size

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

goswinr.github.io/Euclid

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

MIT

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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