dynamovisualprogramming.zerotouchlibrary by

<PackageReference Include="dynamovisualprogramming.zerotouchlibrary" Version="3.0.4.7900" />

Error reading package

System.IO.InvalidDataException: The archive entry was compressed using an unsupported compression method.
   at System.IO.Compression.Inflater.Inflate(FlushCode flushCode)
   at System.IO.Compression.Inflater.ReadInflateOutput(Byte* bufPtr, Int32 length, FlushCode flushCode, Int32& bytesRead)
   at System.IO.Compression.Inflater.ReadOutput(Byte* bufPtr, Int32 length, Int32& bytesRead)
   at System.IO.Compression.Inflater.InflateVerified(Byte* bufPtr, Int32 length)
   at System.IO.Compression.DeflateStream.CopyToStream.Write(Byte[] buffer, Int32 offset, Int32 count)
   at System.IO.Compression.DeflateStream.CopyToStream.CopyFromSourceToDestination()
   at System.IO.Compression.DeflateStream.CopyTo(Stream destination, Int32 bufferSize)
   at FuGetGallery.Entry.OpenAsync() in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 86
   at FuGetGallery.Entry.Open() in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 33
   at FuGetGallery.PackageData.ReadNuspec(Entry entry) in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 372
   at FuGetGallery.PackageData.ReadAsync(HttpClient httpClient, String packageUri) in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 365
   at FuGetGallery.PackageData.PackageDataCache.ReadPackageFromUrl(PackageData package, HttpClient httpClient, CancellationToken token) in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 600
   at FuGetGallery.PackageData.PackageDataCache.GetValueAsync(String arg0, PackageVersion arg1, HttpClient httpClient, CancellationToken token) in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 576

 Ellipse

public class Ellipse : Curve
public Point CenterPoint { get; }

The center of the Ellipse

public Vector MajorAxis { get; }

The major axis of the Ellipse. This is the longer axis. The length of the Vector is the Major radius.

public Vector MinorAxis { get; }

The minor axis of the Ellipse. This is the shorter axis. The length of the Vector is the Minor radius.

public static Ellipse ByCoordinateSystemRadii(CoordinateSystem origin, double xAxisRadius = 1, double yAxisRadius = 1)

Create an Ellipse centered and aligned with input CoordinateSystem, with a x_radius radius in the CS X direction, and y_radius radius in the CS Y direction.

public static Ellipse ByOriginRadii(Point origin, double xAxisRadius = 1, double yAxisRadius = 1)

Create an Ellipse centered at input Point, aligned with WCS XY Plane, with specified X and Y axis radii.

public static Ellipse ByOriginVectors(Point origin, Vector xAxisRadius, Vector yAxisRadius)

Create an Ellipse centered at input Point, with two specified axes. Axes should be be at 90 degrees to each other.

public static Ellipse ByPlaneRadii(Plane plane, double xAxisRadius = 1, double yAxisRadius = 1)

Create an Ellipse centered and aligned with input Plane, with a x_radius radius in the Plane X axis direction, and y_radius radius in the Plane Y axis direction.