Dans.Geometry.Library
25.2401.4023
dotnet add package Dans.Geometry.Library --version 25.2401.4023
NuGet\Install-Package Dans.Geometry.Library -Version 25.2401.4023
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="Dans.Geometry.Library" Version="25.2401.4023" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dans.Geometry.Library" Version="25.2401.4023" />
<PackageReference Include="Dans.Geometry.Library" />
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 Dans.Geometry.Library --version 25.2401.4023
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Dans.Geometry.Library, 25.2401.4023"
#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=Dans.Geometry.Library&version=25.2401.4023
#tool nuget:?package=Dans.Geometry.Library&version=25.2401.4023
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Dan's Geometry Library
An easy-to-implement function library providing numeric operations to handle solutions to typical problems encountered in the field of geometry, including Bezier Curves, Linear Interpolation, and Trigonometry.
Basic Example:
using System;
using Geometry;
// Calculate the hypotenuse of a triangle given its
// angle, in Degrees, and adjacent side.
namespace MyProject
{
public class Program
{
public static void Main(string[] args)
{
float hyp = Trig.GetLineHypFromAngAdj(
Trig.DegToRad(12.3f), 177.5f
);
Console.WriteLine($"Hypotenuse: {hyp} units...");
// 3D to 2D Direct World Projection.
Camera3D camera = new Camera3D()
{
DisplayWidth = 690,
DisplayHeight = 359,
Position = new FPoint3(1500f, 1500f, -1000f),
LookAt = new FPoint3()
};
FVector3 worldPoint = new FVector3(-1301.750f,0.000f,609.600f);
FPoint screenPoint = camera.ProjectToScreen(worldPoint);
Console.WriteLine($"Screen Point: {screenPoint}");
}
}
}
Updates
Version | Description |
---|---|
25.2401.4023 | Bug-fix only; A Camera3D can now be orbited around a subject, crossing look-at lines on the horizontal and vertical planes without an orientation flip. The hack from the previous version has been removed and replaced with the logic to avoid a flipping condition. Please keep in mind this camera implements an "always up" style of view, relative to its local Y axis. When passing from one side of the look-at X or Z planes, the view will flip to keep the camera upright for that relationship. |
25.2331.4041 | Bug-fix only; A minor hack has been added on Camera3D that nudges the camera slightly to avoid zero-crossing mishaps between Camera and LookAt positions. |
25.2330.3855 | Bug-fix only; Camera3D.ProjectToScreen(x) functions have been repaired and tested. |
25.2327.4545 | No breaking changes; Basic low-level 3D rendering has been added, along with the classes Camera3D, FColor4, FLine3, FMatrix4, FPoint3, and FVector4. Project to screen support currently includes FPoint3 (3D point) and FLine3 (3D line), with many more coming in the near future. |
25.2317.4012 | No breaking changes; The following methods have been added to improve intersection handling: FArea.HasIntersection(FArea, FLine), FArea.GetIntersections(FArea, FLine), FArea.HasIntersection(FArea, FArea), and FArea.GetIntersections(FArea, FArea) |
25.2307.4248 | No breaking changes; In FArea, optional rotation parameter has been added to the GetLines() method to allow rotation of the shape around its local center.; GetVertices() method has been added to these classes: FArea, FEllipse, FLine, FPath; GetLines() method has been added to these classes: FEllipse, FPath, GetLine() method has been added to the FLine class; Translate() method has been added to the FPath class; the following new methods were added to the FPoint class: Invert, Rotate, Translate |
25.2303.4537 | One breaking change: The obsolete Ellipse utility class has been removed. Please use identical methods in the FEllipse class. |
25.1228.4607 | No breaking changes; FArea.GetLines(FArea area) added; FArea.IsPointAtCorner(FArea area, FPoint point) added; FLine.GetClosestPoint(FLine line, FPoint point) added; FLine.GetIntersectingLine(List<FLine> lines, FPoint point) added; FLine.GetIntersectingLines(List<FLine> lines, FPoint point) added.; FLine.IsPointAtEnd(FLine line, FPoint point) added; FPoint.Dot(FPoint value1, FPoint value2) added |
25.1221.4026 | No breaking changes; FEllipse class has been added as a first-class geometric primitive shape with built-in functions for cloning, transferring values between shapes, retrieving the bounding box of the shape, retrieving the focal points and the imaginary string length used to draw a perimeter in the real world, intersecting with lines, and plotting coordinates on the edge at an angle from center; Ellipse and its method FindIntersections have been marked as depreciated and will be removed in the near future, so please change your references to the identical FEllipse.FindIntersections method at your earliest convenience. |
25.1218.4115 | No breaking changes; Ellipse class has been added, with FPoint[] FindIntersections(FPoint center, float radiusX, float radiusY, FLine line), which finds 0, 1, or 2 intersections between the edge of an ellipse and a line. |
25.1207.4429 | No breaking changes; Updates to API documentation. |
25.1206.4136 | No breaking changes; Repaired bug in FLine.Intersect that was causing minor inaccuracies. |
25.1205.4515 | No breaking changes; Added Translate and TranslateVector methods to the FLine class. |
25.1131.3500 | No breaking changes; Added the FMatrix and FVector classes from another internal library; Translate method has been added to the FArea class; IsEmpty method is now available on all geometric descriptor classes; FArea class now fully supports negative widths and heights. |
25.1116.3952 | No breaking changes; Re-activated complete support for intuitive orientation of angular functions by introducing the DrawingSpaceEnum enumeration; Re-appreciated the WindingOrientationEnum enumeration to allow all angular methods to express an intuitive direction, in conjunction with a DrawingSpaceEnum value, where appropriate. |
25.1114.3932 | Added Circle class with the methods GetArcBoundingBox, GetQuadrant, GetQuadrantCrossings, and GetQuadrantsOccupied; Marked WindingOrientationEnum as depreciated because the terms clockwise and counterclockwise are subjective according to the drawing space to which they are applied - please use ArcDirectionEnum for most related purposes; Changed GetInsideParallelLine(FPoint, FPoint, WindingOrientationEnum, float) to GetInsideParallelLine(FPoint, FPoint, ArcDirectionEnum, float) to promote compatibility with both Display space and Cartesian space; Corrected the output of Trig.GetPathOrientation method to return the angle in terms of the natural angular progression of an arc to make it compatible with both Display and Cartesian spaces. |
25.1110.4639 | Added static methods GetCubicBoundingBox, GetLinearBoundingBox, GetQuadraticBoundingBox to the Bezier class; Added Clone methods to the FArea, FLine, FPath, FPoint, FScale, and FSize classes; Added static method GetLinePoint to the Linear class; Added the NormalizeRad method to replace the depreciated ReduceRad method in the Trig class. |
25.1108.3829 | Rename all Assign methods to TransferValues |
25.1105.1217 | Initial public release. |
More Information
For more information, please see the GitHub project: danielanywhere/Geometry
Full API documentation is available at this library's GitHub User Page.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
25.2401.4023 | 39 | 2 days ago |
25.2331.4041 | 51 | 3 days ago |
25.2330.3855 | 50 | 4 days ago |
25.2327.4545 | 109 | 7 days ago |
25.2317.4012 | 134 | 17 days ago |
25.2307.4248 | 198 | a month ago |
25.1228.4607 | 85 | a month ago |
25.1221.4026 | 103 | a month ago |
25.1218.4115 | 109 | 2 months ago |
25.1206.4136 | 89 | 2 months ago |
25.1205.4515 | 95 | 2 months ago |
25.1131.3500 | 100 | 2 months ago |
25.1116.3952 | 91 | 3 months ago |
25.1114.3932 | 70 | 3 months ago |
25.1110.4639 | 92 | 3 months ago |
25.1108.3829 | 84 | 3 months ago |
25.1105.1217 | 92 | 3 months ago |