DynamoVisualProgramming.ZeroTouchLibrary by Autodesk

<PackageReference Include="DynamoVisualProgramming.ZeroTouchLibrary" Version="0.7.4" />

 Rectangle

public class Rectangle : Polygon
public double Height { get; }

public double Width { get; }

public static Rectangle ByCornerPoints(IEnumerable<Point> points)

public static Rectangle ByCornerPoints(Point p1, Point p2, Point p3, Point p4)

public static Rectangle ByWidthHeight(double width = 1, double length = 1)

public static Rectangle ByWidthHeight(Plane plane, double width = 1, double length = 1)

public static Rectangle ByWidthHeight(CoordinateSystem cs, double width = 1, double length = 1)