![]() |
VOOZH | about |
dotnet add package Aardvark.Dom.Giraffe --version 1.1.8
NuGet\Install-Package Aardvark.Dom.Giraffe -Version 1.1.8
<PackageReference Include="Aardvark.Dom.Giraffe" Version="1.1.8" />
<PackageVersion Include="Aardvark.Dom.Giraffe" Version="1.1.8" />Directory.Packages.props
<PackageReference Include="Aardvark.Dom.Giraffe" />Project file
paket add Aardvark.Dom.Giraffe --version 1.1.8
#r "nuget: Aardvark.Dom.Giraffe, 1.1.8"
#:package Aardvark.Dom.Giraffe@1.1.8
#addin nuget:?package=Aardvark.Dom.Giraffe&version=1.1.8Install as a Cake Addin
#tool nuget:?package=Aardvark.Dom.Giraffe&version=1.1.8Install as a Cake Tool
Aardvark is an open-source platform for visual computing, real-time graphics and visualization.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 1 NuGet packages that depend on Aardvark.Dom.Giraffe:
| Package | Downloads |
|---|---|
|
Aardvark.Portable.Shell.Desktop
Desktop shell — hosts portable Apps via Aardvark.Dom, a Giraffe server and Aardium. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.2.0-prerelease0003 | 107 | 6/15/2026 |
| 1.2.0-prerelease0002 | 89 | 6/13/2026 |
| 1.2.0-prerelease0001 | 161 | 6/10/2026 |
| 1.1.9 | 169 | 5/19/2026 |
| 1.1.8 | 124 | 4/28/2026 |
| 1.1.7 | 109 | 4/28/2026 |
| 1.1.6 | 96 | 4/27/2026 |
| 1.1.5 | 112 | 4/26/2026 |
| 1.1.4 | 105 | 4/26/2026 |
| 1.1.3 | 97 | 4/26/2026 |
| 1.1.2 | 102 | 4/26/2026 |
| 1.1.1 | 107 | 4/26/2026 |
| 1.1.0 | 100 | 4/25/2026 |
| 1.0.25 | 110 | 4/15/2026 |
| 1.0.24 | 123 | 4/13/2026 |
| 1.0.23 | 496 | 11/20/2025 |
| 1.0.22 | 320 | 11/13/2025 |
| 1.0.21 | 255 | 11/9/2025 |
| 1.0.20 | 229 | 10/28/2025 |
| 1.0.19 | 227 | 10/28/2025 |
fix: MSAA pick decoder could return the wrong scope at silhouettes when scopes of different modes shared an id space. Specifically — at a silhouette where MS resolve averaged a mode-A pickId with the cleared `0` background (e.g. Green `+2` and `0`), the result `+1` would round to a clean integer and look up `scopes.[1]`. If id 1 happened to belong to a *mode B* scope (e.g. Blue, encoded `-1`), the decoder returned Blue's scope but interpreted the pick attachment with mode A's layout — giving a garbage view-position to the wrong scope. Cross-mode silhouettes (mode A vs mode B pickable) had a symmetric flaw.
introduces a `pickModes : Dict<int, bool>` populated at wrap time from `chooseChain.Final` (`true` = mode A, `false` = mode B). The decoder now rejects any candidate whose `sign(pixIdRaw)` doesn't match the registered scope's mode, before the layout-dependent decoding runs.
`readIdAt` now also rejects non-integral reads — anything more than `0.01` from `round(f)` decodes to `0`. MSAA-resolved pickIds are only trustworthy when all 4 samples agreed (→ exact integer); averaged silhouette mixes that happen to land on a clean integer for the *center* pixel are caught instead by the neighbour validator (since adjacent pixels with different coverage produce different averages).
same-id neighbour validation tightened from ≥ 2 to ≥ 3 of 8. Two adjacent silhouette pixels with similar coverage can produce the same near-integer averaged id; three in a 3×3 essentially never do.
`pickModes` is cleaned up in `releaseId` alongside the other id-state dicts.