PowBasics 0.0.33
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package PowBasics --version 0.0.33
NuGet\Install-Package PowBasics -Version 0.0.33
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="PowBasics" Version="0.0.33" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PowBasics --version 0.0.33
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PowBasics, 0.0.33"
#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 PowBasics as a Cake Addin #addin nuget:?package=PowBasics&version=0.0.33 // Install PowBasics as a Cake Tool #tool nuget:?package=PowBasics&version=0.0.33
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
PowBasics Library Collection
Table of content
Introduction
This is a collection of utility functions I found I often need in my projects. They are split over 3 packages:
- PowBasics General utility functions (no dependencies)
- PowBasics.Geom Structs & utils for Rectangles, points, margins... (no dependencies)
- PowBasics.WinForms Utilities for WinForms depends on WinForms
- PowBasics.Rx Utilities for reactive extensions depends on System.Reactive
PowBasics
Math
public static class MathUtils
{
// Cap a number between 2 bounds (inclusive)
int Cap(int val, int min, int max);
/*
Compute the minimum number of multiples of b we need to be at least a
Note: this is not the same as integer division.
Integer division: 7 / 3 = 2 (but 2*3=6 doesn't cover/fill 7 completely)
FillingDiv(7, 3) = 3
*/
int FillingDiv(int a, int b);
}
PowBasics.Geom
It contains :
- records for points, size, rectangles (both with int & double coordinates)
- records for margins and padding
It has all the operations you'd expect either as member methods or extension methods. Including:
- + & - operators between rectangles (R) and margins & paddings (Marg && Pad)
- Mirror operations for margins & paddings. (Swaps x and y coordinates)
record Pt(int X, int Y);
record R(int X, int Y, int Width, int Height);
record Sz(int Width, int Height);
record VecPt(double X, double Y);
record VecR(VecPt Min, VecPt Max);
enum Dir { Horiz, Vert }
interface IMarg {
int Top { get; }
int Right { get; }
int Bottom { get; }
int Left { get; }
}
record Marg(int Top, int Right, int Bottom, int Left) : IMarg;
record Pad(int Top, int Right, int Bottom, int Left, int InBetween) : IMarg;
PowBasics.WinForms
PowBasics.Rx
License
MIT
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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.
-
net7.0
- No dependencies.
NuGet packages (6)
Showing the top 5 NuGet packages that depend on PowBasics:
Package | Downloads |
---|---|
PowWinForms
WinForms reactive utilities |
|
LINQPadExtras
LINQPad utility functions |
|
PowTrees
Tree structure with algorithms |
|
PowLINQPad
Reactive control and utilities for LINQPad |
|
ReactiveVars
Collection of general utility functions |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.2.1 | 166 | 6/30/2024 |
0.2.0 | 121 | 6/30/2024 |
0.1.6 | 152 | 2/12/2024 |
0.1.5 | 129 | 1/31/2024 |
0.1.4 | 100 | 1/31/2024 |
0.1.3 | 106 | 1/31/2024 |
0.1.1 | 114 | 1/19/2024 |
0.1.0 | 116 | 1/19/2024 |
0.0.40 | 170 | 9/16/2023 |
0.0.39 | 154 | 9/16/2023 |
0.0.38 | 125 | 9/16/2023 |
0.0.37 | 176 | 9/16/2023 |
0.0.36 | 142 | 9/16/2023 |
0.0.35 | 165 | 9/15/2023 |
0.0.34 | 181 | 8/23/2023 |
0.0.33 | 171 | 8/22/2023 |
0.0.32 | 291 | 8/5/2023 |
0.0.31 | 154 | 7/30/2023 |
0.0.30 | 216 | 7/12/2023 |
0.0.29 | 179 | 7/12/2023 |
0.0.28 | 166 | 7/11/2023 |
0.0.27 | 187 | 7/10/2023 |
0.0.26 | 158 | 7/10/2023 |
0.0.25 | 147 | 7/10/2023 |
0.0.24 | 173 | 7/9/2023 |
0.0.23 | 178 | 7/5/2023 |
0.0.22 | 170 | 7/5/2023 |
0.0.21 | 181 | 7/5/2023 |
0.0.20 | 164 | 7/5/2023 |
0.0.19 | 138 | 7/5/2023 |
0.0.18 | 186 | 7/4/2023 |
0.0.17 | 163 | 7/2/2023 |
0.0.16 | 160 | 6/21/2023 |
0.0.15 | 161 | 6/15/2023 |
0.0.14 | 162 | 6/15/2023 |
0.0.13 | 145 | 6/15/2023 |
0.0.12 | 159 | 6/12/2023 |
0.0.11 | 177 | 6/5/2023 |
0.0.10 | 204 | 5/28/2023 |
0.0.9 | 200 | 5/28/2023 |
0.0.6 | 370 | 11/26/2022 |
0.0.5 | 336 | 11/26/2022 |
0.0.4 | 502 | 11/15/2022 |