PowBasics 0.0.13

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

// Install PowBasics as a Cake Tool
#tool nuget:?package=PowBasics&version=0.0.13

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 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

DynaServeLib

DynaServe

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.6 108 2/12/2024
0.1.5 94 1/31/2024
0.1.4 65 1/31/2024
0.1.3 76 1/31/2024
0.1.1 95 1/19/2024
0.1.0 83 1/19/2024
0.0.40 144 9/16/2023
0.0.39 129 9/16/2023
0.0.38 111 9/16/2023
0.0.37 145 9/16/2023
0.0.36 112 9/16/2023
0.0.35 126 9/15/2023
0.0.34 142 8/23/2023
0.0.33 140 8/22/2023
0.0.32 209 8/5/2023
0.0.31 125 7/30/2023
0.0.30 179 7/12/2023
0.0.29 145 7/12/2023
0.0.28 138 7/11/2023
0.0.27 149 7/10/2023
0.0.26 126 7/10/2023
0.0.25 120 7/10/2023
0.0.24 132 7/9/2023
0.0.23 148 7/5/2023
0.0.22 138 7/5/2023
0.0.21 150 7/5/2023
0.0.20 138 7/5/2023
0.0.19 122 7/5/2023
0.0.18 155 7/4/2023
0.0.17 142 7/2/2023
0.0.16 130 6/21/2023
0.0.15 135 6/15/2023
0.0.14 134 6/15/2023
0.0.13 119 6/15/2023
0.0.12 136 6/12/2023
0.0.11 145 6/5/2023
0.0.10 172 5/28/2023
0.0.9 167 5/28/2023
0.0.6 333 11/26/2022
0.0.5 310 11/26/2022
0.0.4 451 11/15/2022