Geometry.Calculator 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Geometry.Calculator --version 1.0.2
NuGet\Install-Package Geometry.Calculator -Version 1.0.2
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="Geometry.Calculator" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Geometry.Calculator --version 1.0.2
#r "nuget: Geometry.Calculator, 1.0.2"
#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.
// Install Geometry.Calculator as a Cake Addin
#addin nuget:?package=Geometry.Calculator&version=1.0.2

// Install Geometry.Calculator as a Cake Tool
#tool nuget:?package=Geometry.Calculator&version=1.0.2

Geometry.Calculator

Nuget (C# library) for Geometry shapes calculator: Area, Perimeter, Angles, Diagonal , Sides, etc...
  • 2D shapes: Square, Rectangle, Triangle, Circle, Semicircle, Sector, Ellipse, Trapezoid, Parallelogram, Rhombus
  • 3D shapes: Cube, Pyramid, Sphere,Rectangular, Cylinder, Cone

Example

//square Side
var side = GeometryShape.GetSquare(Geometry.Calculator.Enums.SquareCalculationType.Side, 4);

//square Area
var area = GeometryShape.GetSquare(Geometry.Calculator.Enums.SquareCalculationType.Area, 16);
//square Perimeter
var perimeter = GeometryShape.GetSquare(Geometry.Calculator.Enums.SquareCalculationType.Perimeter, 16);

//square Diagonal
var diagonal = GeometryShape.GetSquare(Geometry.Calculator.Enums.SquareCalculationType.Diagonal, 5.6569);

//Rectangle BothSides
var side = GeometryShape.GetRectangle(Geometry.Calculator.Enums.RectangleCalculationType.BothSides, 4, 5);

//Rectangle AreaAndSide
var sideAndArea = GeometryShape.GetRectangle(Geometry.Calculator.Enums.RectangleCalculationType.SideAndArea, 4, 20);

//Rectangle SideAndPerimeter
var sideAndPerimeter = GeometryShape.GetRectangle(Geometry.Calculator.Enums.RectangleCalculationType.SideAndPerimeter, 4, 18);

//Rectangle SideAndPerimeter
var sideAndDiagonal = GeometryShape.GetRectangle(Geometry.Calculator.Enums.RectangleCalculationType.SideAndDiagonal, 4, 6.4031);

//Circle radius
var radius = GeometryShape.GetCircle(Geometry.Calculator.Enums.CircleCalculationType.Radius, 4);

//Circle Area
var area = GeometryShape.GetCircle(Geometry.Calculator.Enums.CircleCalculationType.Area, 50.265);

//Circle Perimeter
var perimeter = GeometryShape.GetCircle(Geometry.Calculator.Enums.CircleCalculationType.Circumference, 25.1327);

//Circle diagonal
var diagonal = GeometryShape.GetCircle(Geometry.Calculator.Enums.CircleCalculationType.Diameter, 8);
  
//Semicircle radius
var radius = GeometryShape.GetSemicircle(Geometry.Calculator.Enums.SemicircleCalculationType.Radius, 1);

//Semicircle Area 
var area = GeometryShape.GetSemicircle(Geometry.Calculator.Enums.SemicircleCalculationType.Area, 1.5708);

//Semicircle Perimeter 
var perimeter = GeometryShape.GetSemicircle(Geometry.Calculator.Enums.SemicircleCalculationType.Perimeter, 5.1416);

//Semicircle diameter
var diameter = GeometryShape.GetSemicircle(Geometry.Calculator.Enums.SemicircleCalculationType.Diameter, 2);

Installation

NuGet\Install-Package Geometry.Calculator

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

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
1.0.3 104 9/12/2023
1.0.2 240 3/1/2023
1.0.1 227 2/25/2023
1.0.0 231 2/25/2023

v1.0.0
Geometry Calculations for Square, Rectangle
TODO list:
- 2D Shapes: Circle, Semicircle, Triangle, Sector, Ellipse, Trapezoid, Parallelogram, Rhombus
- 3D Shapes: Cube, Pyramid, Sphere,Rectangular, Cylinder, Cone
v1.0.1
Add Readme.md
v1.0.2
Ad calculation for Circle and Semicircle