Euclid 0.11.1
Prefix Reserveddotnet add package Euclid --version 0.11.1
NuGet\Install-Package Euclid -Version 0.11.1
<PackageReference Include="Euclid" Version="0.11.1" />
paket add Euclid --version 0.11.1
#r "nuget: Euclid, 0.11.1"
// Install Euclid as a Cake Addin #addin nuget:?package=Euclid&version=0.11.1 // Install Euclid as a Cake Tool #tool nuget:?package=Euclid&version=0.11.1
Euclid
Euclid is a 2D and 3D geometry library 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 too. So it is using double precision floating point numbers for all values. (While most geometry libraries for games use single precision floats.)
This library can be used in JavaScript via Fable too.
See Euclid.Rhino for converting form and to Rhino3D geometry.
Documentation
This library assumes a right handed coordinate system with the Z-axis pointing up. Just like Rhino3D, SketchUp, Revit, AutoCAD and Blender have it. But unlike Unity or Unreal Engine.
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. ( = Homogeneous coordinates)
For the full API see fuget.org for now.
License
Release Notes
0.11.1
- fix Polyline2D.Area
0.11.0
- add Box and Rect.contains Pt
- fix bad tolerance in Rect2D.tryCreateFrom3Points
0.10.0
- add Line.divideEvery
- add Rect.createFromDirAndPoints
- rename Width and Height to SizeX and SizeY for Rect and Box
- check TS build via Fable
0.9.0
- add suffix '90' to angel functions in Plane module
- improve precision of Pi literals
- include NaN check in isTiny functions
0.8.0
- fix line splitting
- rename Rect.create functions
0.7.0
- refactor offset
- add Topology sorting
0.6.1
- remove reflection form error messages for nicer Fable output
- rename Rect.Rotate to Rect.RotateOrientation
- add Rect.grid
- fix Rect.subdivide
0.5.0
- allow equality checks to use zero tolerance.
- better docstring
- add more angle calculation functions
- rename distanceFromPoint to distanceToPt
- add rotateByQuarterCircle
- add ExtendRel functions for Lines
- use *** as operator for dot product, and matrix multiplication
- add splitting with gap to Lines and Rects
0.4.1
- fix bug in rect.Edge23
- add BBox.createFromIList
0.4.0
- add Line.withLengthFromMid
- rename isAngleLessThan functions
- add spherical interpolation (slerp) for vectors
- rename Length to Width on Boxes and Rects
- rename Width to Height2D on Rects
- rename Width to Depth on Boxes
- add EdgeMethods on Rects and Boxes
0.3.0
- renamed OrthoMatrix to RigidMatrix
- add DataMember Attributes for serialization
- ofXZY functions renamed to createFromMembersXYZ
- add DivideByInt static members for Array.average and Array.sum for functions
- fixed typos, improve documentation
0.2.1
- fix fable support
0.2.0
- fable support
- improved xml documentation
0.1.0
- first public release
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. |
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- FSharp.Core (>= 5.0.2)
-
net6.0
- FSharp.Core (>= 5.0.2)
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.11.1 | 418 | 10/1/2024 |
0.11.0 | 116 | 9/25/2024 |
0.10.0 | 109 | 9/19/2024 |
0.9.0 | 585 | 7/6/2024 |
0.8.0 | 338 | 5/2/2024 |
0.7.0 | 115 | 4/29/2024 |
0.6.1 | 185 | 2/17/2024 |
0.6.1-a | 98 | 2/13/2024 |
0.5.0 | 284 | 1/6/2024 |
0.4.1 | 134 | 12/2/2023 |
0.4.0 | 125 | 11/28/2023 |
0.3.0 | 137 | 10/22/2023 |
0.2.1 | 273 | 2/26/2023 |
0.2.0 | 304 | 2/4/2023 |
0.1.0 | 287 | 1/21/2023 |
0.0.0 | 340 | 11/2/2022 |
- fix Polyline2D.Area