├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── assets └── logo │ ├── projectrix-logo-banner-temp.png │ ├── projectrix-logo-small-temp.png │ └── projectrix-logo-temp.png ├── build.bsh ├── fastBuildForTrials.bsh ├── package-lock.json ├── package.json ├── src ├── projectrix.ts └── utils │ └── transform-utils.ts ├── trialgrounds ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── link.bsh ├── package-lock.json ├── package.json ├── playwright.config.ts ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.scss │ ├── components │ │ ├── DemoCard.svelte │ │ ├── DemoStartSlot.svelte │ │ ├── OriginMarker.svelte │ │ ├── PerfCard.svelte │ │ ├── TabbedCode.svelte │ │ ├── demos │ │ │ ├── AnimateDemo.svelte │ │ │ ├── CssIsAwesomeDemo.svelte │ │ │ ├── DivGolfDemo.svelte │ │ │ ├── FauxFlipDemo.svelte │ │ │ ├── FlipDemo.svelte │ │ │ └── MatchDemo.svelte │ │ ├── melt │ │ │ └── OptionCheckbox.svelte │ │ ├── menus │ │ │ └── MainMenu.svelte │ │ ├── perfs │ │ │ ├── Depth1000Perf.svelte │ │ │ ├── Depth100Perf.svelte │ │ │ ├── Depth10Perf.svelte │ │ │ ├── Depth1Perf.svelte │ │ │ └── DepthNPerf.svelte │ │ └── trials │ │ │ ├── BothPerspective.svelte │ │ │ ├── ClearWithMat4.svelte │ │ │ ├── ClearWithMatrix3d.svelte │ │ │ ├── Control.svelte │ │ │ ├── MeasureSubject.svelte │ │ │ ├── MeasureSubjectOrigin0.svelte │ │ │ ├── MeasureSubjectOriginOdd.svelte │ │ │ ├── MeasureSubjectSmaller.svelte │ │ │ ├── OuterContainerPreserve3d.svelte │ │ │ ├── PerspectiveOrigin.svelte │ │ │ ├── PerspectivePreserve3d.svelte │ │ │ ├── SetWithMat4.svelte │ │ │ ├── SetWithMatrix3.svelte │ │ │ ├── SubjectOrigin0.svelte │ │ │ ├── SubjectOrigin0Bigger.svelte │ │ │ ├── SubjectPerspective.svelte │ │ │ ├── Target2ndChild.svelte │ │ │ ├── TargetAbsolute.svelte │ │ │ ├── TargetAbsoluteInTransform.svelte │ │ │ ├── TargetBigger.svelte │ │ │ ├── TargetBorderBox.svelte │ │ │ ├── TargetDeepAbsolute.svelte │ │ │ ├── TargetFixed.svelte │ │ │ ├── TargetFixedInFilter.svelte │ │ │ ├── TargetFixedInTransform.svelte │ │ │ ├── TargetInOrigin0.svelte │ │ │ ├── TargetInOrigin0Bigger.svelte │ │ │ ├── TargetInPadded.svelte │ │ │ ├── TargetInPreserve3d.svelte │ │ │ ├── TargetInRotated.svelte │ │ │ ├── TargetInRotatedBigger.svelte │ │ │ ├── TargetInScroll.svelte │ │ │ ├── TargetMargined.svelte │ │ │ ├── TargetOrigin0.svelte │ │ │ ├── TargetOrigin0Bigger.svelte │ │ │ ├── TargetPadded.svelte │ │ │ ├── TargetPerspective.svelte │ │ │ ├── TargetRelative.svelte │ │ │ ├── TargetRotated.svelte │ │ │ ├── TargetRotatedBigger.svelte │ │ │ ├── TargetSmaller.svelte │ │ │ ├── TargetSticky.svelte │ │ │ ├── TwoContainersPreserve3d.svelte │ │ │ ├── UseMat4Type.svelte │ │ │ ├── UseMatrix3dType.svelte │ │ │ ├── UseSubjectBorder.svelte │ │ │ ├── UseTargetBorder.svelte │ │ │ └── UseZeroBorder.svelte │ ├── lib │ │ ├── demos │ │ │ ├── codesByDemoName.ts │ │ │ ├── demoCodes.ts │ │ │ ├── demoNames.ts │ │ │ ├── demos.ts │ │ │ └── usage │ │ │ │ ├── AnimateUsage.ts │ │ │ │ ├── CssIsAwesomeUsage.ts │ │ │ │ ├── DivGolfUsage.ts │ │ │ │ ├── FauxFlipUsage.ts │ │ │ │ ├── FlipUsage.ts │ │ │ │ └── MatchUsage.ts │ │ ├── optionNames.ts │ │ ├── options.ts │ │ ├── perf │ │ │ ├── perfNames.ts │ │ │ ├── perfs.ts │ │ │ └── runPerf.ts │ │ ├── stores │ │ │ ├── addChangeEmitsToStore.ts │ │ │ ├── createMediaQueryStore.ts │ │ │ └── isHoverDevice.ts │ │ └── trials │ │ │ ├── animateTrial.ts │ │ │ ├── showDefaultSubject.ts │ │ │ ├── trialNames.ts │ │ │ └── trials.ts │ ├── routes │ │ ├── +layout.svelte │ │ ├── +layout.ts │ │ ├── +page.svelte │ │ ├── [trialName] │ │ │ ├── +layout.svelte │ │ │ └── +page.svelte │ │ ├── demos │ │ │ ├── +layout.ts │ │ │ ├── +page.svelte │ │ │ └── [demoName] │ │ │ │ └── +page.svelte │ │ └── perf │ │ │ ├── +layout.ts │ │ │ ├── +page.svelte │ │ │ └── [perfName] │ │ │ └── +page.svelte │ └── variables.scss ├── static │ ├── demo-recordings │ │ ├── animateDemo.mp4 │ │ ├── divgolfDemo.mp4 │ │ ├── flipDemo.mp4 │ │ └── matchDemo.mp4 │ ├── favicon.png │ └── fonts │ │ ├── Inconsolata.ttf │ │ └── Rubik.ttf ├── svelte.config.js ├── tests │ ├── all-trials--toSubject.test.ts │ ├── all-trials--toSubject.test.ts-snapshots │ │ ├── both-perspective │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── clear-with-mat4 │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── clear-with-matrix3d │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── control │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── measure-subject-origin-0 │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── measure-subject-origin-odd │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── measure-subject-smaller │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── measure-subject │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── outer-container-preserve-3d │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── perspective-origin │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── perspective-preserve-3d │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── set-with-mat4 │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── set-with-matrix3d │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── subject-origin-0-bigger │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── subject-origin-0 │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── subject-perspective │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-2nd-child │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-absolute-in-transform │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-absolute │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-bigger │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-border-box │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-deep-absolute │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-fixed-in-filter │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-fixed-in-transform │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-fixed │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-in-origin-0-bigger │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-in-origin-0 │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-in-padded │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-in-preserve-3d │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-in-rotated-bigger │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-in-rotated │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-in-scroll │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-margined │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-origin-0-bigger │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-origin-0 │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-padded │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-perspective │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-relative │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-rotated-bigger │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-rotated │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-smaller │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── target-sticky │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── two-containers-preserve-3d │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── use-mat4-type │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── use-matrix3d-type │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── use-subject-border │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ ├── use-target-border │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ │ └── use-zero-border │ │ │ ├── chromium-chromium-win32.png │ │ │ ├── firefox-firefox-win32.png │ │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ │ ├── mobile-safari-mobile-safari-win32.png │ │ │ └── webkit-webkit-win32.png │ ├── all-trials--toTargetOrigin.test.ts │ └── all-trials--toTargetOrigin.test.ts-snapshots │ │ ├── both-perspective │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── clear-with-mat4 │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── clear-with-matrix3d │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── control │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── measure-subject-origin-0 │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── measure-subject-origin-odd │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── measure-subject-smaller │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── measure-subject │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── outer-container-preserve-3d │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── perspective-origin │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── perspective-preserve-3d │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── set-with-mat4 │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── set-with-matrix3d │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── subject-origin-0-bigger │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── subject-origin-0 │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── subject-perspective │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-2nd-child │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-absolute-in-transform │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-absolute │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-bigger │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-border-box │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-deep-absolute │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-fixed-in-filter │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-fixed-in-transform │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-fixed │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-in-origin-0-bigger │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-in-origin-0 │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-in-padded │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-in-preserve-3d │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-in-rotated-bigger │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-in-rotated │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-in-scroll │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-margined │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-origin-0-bigger │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-origin-0 │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-padded │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-perspective │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-relative │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-rotated-bigger │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-rotated │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-smaller │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── target-sticky │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── two-containers-preserve-3d │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── use-mat4-type │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── use-matrix3d-type │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── use-subject-border │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── use-target-border │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ ├── use-transform-type │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png │ │ └── use-zero-border │ │ ├── chromium-chromium-win32.png │ │ ├── firefox-firefox-win32.png │ │ ├── mobile-chrome-mobile-chrome-win32.png │ │ ├── mobile-safari-mobile-safari-win32.png │ │ └── webkit-webkit-win32.png ├── tsconfig.json ├── vite.config.ts └── watchHighlights.ts ├── tsconfig.json └── watch.bsh /.prettierignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /dist 5 | /.svelte-kit 6 | /package 7 | .env 8 | .env.* 9 | !.env.example 10 | 11 | # Ignore files for PNPM, NPM and YARN 12 | pnpm-lock.yaml 13 | package-lock.json 14 | yarn.lock 15 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": false, 3 | "singleQuote": true, 4 | "trailingComma": "all", 5 | "printWidth": 100, 6 | "pluginSearchDirs": ["."] 7 | } 8 | -------------------------------------------------------------------------------- /assets/logo/projectrix-logo-banner-temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/assets/logo/projectrix-logo-banner-temp.png -------------------------------------------------------------------------------- /assets/logo/projectrix-logo-small-temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/assets/logo/projectrix-logo-small-temp.png -------------------------------------------------------------------------------- /assets/logo/projectrix-logo-temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/assets/logo/projectrix-logo-temp.png -------------------------------------------------------------------------------- /fastBuildForTrials.bsh: -------------------------------------------------------------------------------- 1 | npx tsc --module es6 --outdir dist/es -------------------------------------------------------------------------------- /trialgrounds/.eslintignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | -------------------------------------------------------------------------------- /trialgrounds/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | vite.config.js.timestamp-* 10 | vite.config.ts.timestamp-* 11 | 12 | /tests/.results/* 13 | 14 | /.vercel -------------------------------------------------------------------------------- /trialgrounds/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /trialgrounds/.prettierignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | -------------------------------------------------------------------------------- /trialgrounds/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": false, 3 | "singleQuote": true, 4 | "trailingComma": "all", 5 | "printWidth": 100, 6 | "plugins": ["prettier-plugin-svelte"], 7 | "pluginSearchDirs": ["."], 8 | "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] 9 | } 10 | -------------------------------------------------------------------------------- /trialgrounds/link.bsh: -------------------------------------------------------------------------------- 1 | cd .. 2 | npm run build 3 | npm link 4 | cd trialgrounds 5 | npm link projectrix -------------------------------------------------------------------------------- /trialgrounds/src/app.d.ts: -------------------------------------------------------------------------------- 1 | // See https://kit.svelte.dev/docs/types#app 2 | // for information about these interfaces 3 | declare global { 4 | namespace App { 5 | // interface Error {} 6 | // interface Locals {} 7 | // interface PageData {} 8 | // interface Platform {} 9 | } 10 | } 11 | 12 | export {}; 13 | -------------------------------------------------------------------------------- /trialgrounds/src/components/perfs/Depth1000Perf.svelte: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /trialgrounds/src/components/perfs/Depth100Perf.svelte: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /trialgrounds/src/components/perfs/Depth10Perf.svelte: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /trialgrounds/src/components/perfs/Depth1Perf.svelte: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /trialgrounds/src/lib/demos/usage/MatchUsage.ts: -------------------------------------------------------------------------------- 1 | import { setInlineStyles, getProjection } from 'projectrix'; 2 | 3 | function match(target: HTMLElement, subject: HTMLElement): void { 4 | setInlineStyles(target, getProjection(subject, target).toSubject); 5 | } -------------------------------------------------------------------------------- /trialgrounds/src/lib/perf/perfNames.ts: -------------------------------------------------------------------------------- 1 | export const PerfName = { 2 | Depth1: 'depth-1', 3 | Depth10: 'depth-10', 4 | Depth100: 'depth-100', 5 | Depth1000: 'depth-1000', 6 | } as const; 7 | export type PerfName = (typeof PerfName)[keyof typeof PerfName]; 8 | export const perfNames: string[] = Object.values(PerfName); 9 | -------------------------------------------------------------------------------- /trialgrounds/src/lib/stores/isHoverDevice.ts: -------------------------------------------------------------------------------- 1 | import { addChangeEmitsToReadable } from './addChangeEmitsToStore'; 2 | import { createMediaQueryStore } from './createMediaQueryStore'; 3 | 4 | export const isHoverDevice = addChangeEmitsToReadable( 5 | createMediaQueryStore('(hover: hover)'), 6 | ); 7 | -------------------------------------------------------------------------------- /trialgrounds/src/lib/trials/showDefaultSubject.ts: -------------------------------------------------------------------------------- 1 | import { writable } from 'svelte/store'; 2 | 3 | export const showDefaultSubject = writable(true); 4 | -------------------------------------------------------------------------------- /trialgrounds/src/routes/demos/+layout.ts: -------------------------------------------------------------------------------- 1 | export const ssr = false; 2 | -------------------------------------------------------------------------------- /trialgrounds/src/routes/perf/+layout.ts: -------------------------------------------------------------------------------- 1 | export const ssr = false; 2 | -------------------------------------------------------------------------------- /trialgrounds/src/variables.scss: -------------------------------------------------------------------------------- 1 | /* Variables and mixins declared here will be available in all other SCSS files */ 2 | -------------------------------------------------------------------------------- /trialgrounds/static/demo-recordings/animateDemo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/static/demo-recordings/animateDemo.mp4 -------------------------------------------------------------------------------- /trialgrounds/static/demo-recordings/divgolfDemo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/static/demo-recordings/divgolfDemo.mp4 -------------------------------------------------------------------------------- /trialgrounds/static/demo-recordings/flipDemo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/static/demo-recordings/flipDemo.mp4 -------------------------------------------------------------------------------- /trialgrounds/static/demo-recordings/matchDemo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/static/demo-recordings/matchDemo.mp4 -------------------------------------------------------------------------------- /trialgrounds/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/static/favicon.png -------------------------------------------------------------------------------- /trialgrounds/static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /trialgrounds/static/fonts/Rubik.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/static/fonts/Rubik.ttf -------------------------------------------------------------------------------- /trialgrounds/svelte.config.js: -------------------------------------------------------------------------------- 1 | import vercel from '@sveltejs/adapter-vercel'; 2 | import { vitePreprocess } from '@sveltejs/kit/vite'; 3 | import { preprocessMeltUI, sequence } from '@melt-ui/pp'; 4 | 5 | /** @type {import('@sveltejs/kit').Config} */ 6 | const config = { 7 | preprocess: sequence([vitePreprocess({}), preprocessMeltUI()]), 8 | 9 | kit: { 10 | adapter: vercel(), 11 | }, 12 | }; 13 | 14 | export default config; 15 | -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/both-perspective/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/both-perspective/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/both-perspective/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/both-perspective/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/both-perspective/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/both-perspective/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/both-perspective/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/both-perspective/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/both-perspective/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/both-perspective/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-mat4/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-mat4/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-mat4/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-mat4/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-mat4/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-mat4/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-mat4/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-mat4/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-mat4/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-mat4/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-matrix3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-matrix3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-matrix3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-matrix3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-matrix3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-matrix3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-matrix3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-matrix3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-matrix3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/clear-with-matrix3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/control/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/control/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/control/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/control/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/control/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/control/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/control/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/control/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/control/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/control/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-0/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-0/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-0/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-0/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-0/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-0/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-0/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-0/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-0/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-0/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-odd/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-odd/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-odd/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-odd/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-odd/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-odd/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-odd/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-odd/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-odd/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-origin-odd/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-smaller/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-smaller/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-smaller/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-smaller/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-smaller/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-smaller/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-smaller/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-smaller/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-smaller/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject-smaller/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/measure-subject/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/outer-container-preserve-3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/outer-container-preserve-3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/outer-container-preserve-3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/outer-container-preserve-3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/outer-container-preserve-3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/outer-container-preserve-3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/outer-container-preserve-3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/outer-container-preserve-3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/outer-container-preserve-3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/outer-container-preserve-3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-origin/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-origin/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-origin/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-origin/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-origin/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-origin/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-origin/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-origin/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-origin/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-origin/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-preserve-3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-preserve-3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-preserve-3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-preserve-3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-preserve-3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-preserve-3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-preserve-3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-preserve-3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-preserve-3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/perspective-preserve-3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-mat4/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-mat4/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-mat4/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-mat4/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-mat4/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-mat4/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-mat4/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-mat4/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-mat4/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-mat4/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-matrix3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-matrix3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-matrix3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-matrix3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-matrix3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-matrix3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-matrix3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-matrix3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-matrix3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/set-with-matrix3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-origin-0/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-perspective/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-perspective/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-perspective/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-perspective/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-perspective/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-perspective/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-perspective/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-perspective/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-perspective/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/subject-perspective/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-2nd-child/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-2nd-child/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-2nd-child/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-2nd-child/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-2nd-child/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-2nd-child/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-2nd-child/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-2nd-child/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-2nd-child/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-2nd-child/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute-in-transform/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute-in-transform/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute-in-transform/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute-in-transform/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute-in-transform/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute-in-transform/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute-in-transform/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute-in-transform/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute-in-transform/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute-in-transform/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-absolute/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-border-box/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-border-box/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-border-box/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-border-box/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-border-box/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-border-box/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-border-box/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-border-box/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-border-box/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-border-box/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-deep-absolute/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-deep-absolute/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-deep-absolute/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-deep-absolute/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-deep-absolute/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-deep-absolute/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-deep-absolute/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-deep-absolute/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-deep-absolute/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-deep-absolute/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-filter/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-filter/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-filter/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-filter/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-filter/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-filter/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-filter/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-filter/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-filter/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-filter/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-transform/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-transform/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-transform/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-transform/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-transform/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-transform/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-transform/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-transform/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-transform/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed-in-transform/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-fixed/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-origin-0/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-padded/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-padded/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-padded/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-padded/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-padded/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-padded/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-padded/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-padded/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-padded/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-padded/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-preserve-3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-preserve-3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-preserve-3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-preserve-3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-preserve-3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-preserve-3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-preserve-3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-preserve-3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-preserve-3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-preserve-3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-rotated/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-scroll/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-scroll/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-scroll/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-scroll/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-scroll/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-scroll/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-scroll/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-scroll/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-scroll/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-in-scroll/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-margined/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-margined/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-margined/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-margined/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-margined/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-margined/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-margined/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-margined/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-margined/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-margined/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-origin-0/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-padded/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-padded/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-padded/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-padded/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-padded/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-padded/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-padded/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-padded/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-padded/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-padded/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-perspective/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-perspective/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-perspective/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-perspective/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-perspective/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-perspective/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-perspective/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-perspective/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-perspective/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-perspective/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-relative/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-relative/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-relative/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-relative/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-relative/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-relative/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-relative/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-relative/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-relative/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-relative/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-rotated/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-smaller/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-smaller/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-smaller/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-smaller/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-smaller/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-smaller/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-smaller/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-smaller/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-smaller/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-smaller/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-sticky/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-sticky/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-sticky/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-sticky/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-sticky/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-sticky/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-sticky/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-sticky/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-sticky/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/target-sticky/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/two-containers-preserve-3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/two-containers-preserve-3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/two-containers-preserve-3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/two-containers-preserve-3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/two-containers-preserve-3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/two-containers-preserve-3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/two-containers-preserve-3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/two-containers-preserve-3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/two-containers-preserve-3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/two-containers-preserve-3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-mat4-type/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-mat4-type/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-mat4-type/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-mat4-type/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-mat4-type/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-mat4-type/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-mat4-type/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-mat4-type/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-mat4-type/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-mat4-type/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-matrix3d-type/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-matrix3d-type/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-matrix3d-type/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-matrix3d-type/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-matrix3d-type/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-matrix3d-type/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-matrix3d-type/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-matrix3d-type/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-matrix3d-type/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-matrix3d-type/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-subject-border/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-subject-border/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-subject-border/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-subject-border/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-subject-border/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-subject-border/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-subject-border/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-subject-border/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-subject-border/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-subject-border/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-target-border/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-target-border/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-target-border/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-target-border/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-target-border/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-target-border/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-target-border/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-target-border/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-target-border/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-target-border/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-zero-border/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-zero-border/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-zero-border/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-zero-border/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-zero-border/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-zero-border/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-zero-border/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-zero-border/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-zero-border/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toSubject.test.ts-snapshots/use-zero-border/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/both-perspective/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/both-perspective/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/both-perspective/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/both-perspective/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/both-perspective/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/both-perspective/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/both-perspective/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/both-perspective/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/both-perspective/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/both-perspective/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-mat4/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-mat4/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-mat4/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-mat4/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-mat4/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-mat4/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-mat4/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-mat4/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-mat4/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-mat4/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-matrix3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-matrix3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-matrix3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-matrix3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-matrix3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-matrix3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-matrix3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-matrix3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-matrix3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/clear-with-matrix3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/control/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/control/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/control/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/control/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/control/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/control/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/control/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/control/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/control/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/control/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-0/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-0/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-0/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-0/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-0/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-0/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-0/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-0/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-0/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-0/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-odd/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-odd/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-odd/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-odd/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-odd/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-odd/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-odd/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-odd/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-odd/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-origin-odd/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-smaller/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-smaller/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-smaller/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-smaller/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-smaller/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-smaller/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-smaller/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-smaller/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-smaller/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject-smaller/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/measure-subject/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/outer-container-preserve-3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/outer-container-preserve-3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/outer-container-preserve-3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/outer-container-preserve-3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/outer-container-preserve-3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/outer-container-preserve-3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/outer-container-preserve-3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/outer-container-preserve-3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/outer-container-preserve-3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/outer-container-preserve-3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-origin/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-origin/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-origin/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-origin/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-origin/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-origin/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-origin/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-origin/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-origin/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-origin/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-preserve-3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-preserve-3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-preserve-3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-preserve-3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-preserve-3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-preserve-3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-preserve-3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-preserve-3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-preserve-3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/perspective-preserve-3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-mat4/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-mat4/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-mat4/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-mat4/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-mat4/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-mat4/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-mat4/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-mat4/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-mat4/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-mat4/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-matrix3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-matrix3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-matrix3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-matrix3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-matrix3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-matrix3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-matrix3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-matrix3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-matrix3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/set-with-matrix3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-origin-0/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-perspective/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-perspective/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-perspective/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-perspective/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-perspective/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-perspective/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-perspective/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-perspective/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-perspective/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/subject-perspective/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-2nd-child/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-2nd-child/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-2nd-child/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-2nd-child/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-2nd-child/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-2nd-child/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-2nd-child/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-2nd-child/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-2nd-child/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-2nd-child/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute-in-transform/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute-in-transform/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute-in-transform/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute-in-transform/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute-in-transform/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute-in-transform/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute-in-transform/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute-in-transform/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute-in-transform/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute-in-transform/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-absolute/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-border-box/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-border-box/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-border-box/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-border-box/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-border-box/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-border-box/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-border-box/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-border-box/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-border-box/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-border-box/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-deep-absolute/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-deep-absolute/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-deep-absolute/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-deep-absolute/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-deep-absolute/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-deep-absolute/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-deep-absolute/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-deep-absolute/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-deep-absolute/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-deep-absolute/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-filter/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-filter/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-filter/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-filter/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-filter/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-filter/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-filter/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-filter/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-filter/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-filter/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-transform/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-transform/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-transform/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-transform/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-transform/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-transform/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-transform/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-transform/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-transform/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed-in-transform/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-fixed/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-origin-0/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-padded/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-padded/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-padded/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-padded/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-padded/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-padded/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-padded/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-padded/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-padded/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-padded/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-preserve-3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-preserve-3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-preserve-3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-preserve-3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-preserve-3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-preserve-3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-preserve-3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-preserve-3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-preserve-3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-preserve-3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-rotated/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-scroll/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-scroll/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-scroll/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-scroll/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-scroll/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-scroll/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-scroll/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-scroll/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-scroll/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-in-scroll/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-margined/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-margined/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-margined/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-margined/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-margined/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-margined/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-margined/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-margined/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-margined/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-margined/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-origin-0/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-padded/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-padded/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-padded/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-padded/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-padded/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-padded/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-padded/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-padded/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-padded/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-padded/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-perspective/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-perspective/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-perspective/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-perspective/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-perspective/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-perspective/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-perspective/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-perspective/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-perspective/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-perspective/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-relative/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-relative/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-relative/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-relative/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-relative/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-relative/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-relative/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-relative/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-relative/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-relative/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated-bigger/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated-bigger/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated-bigger/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated-bigger/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated-bigger/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated-bigger/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated-bigger/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated-bigger/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated-bigger/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated-bigger/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-rotated/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-smaller/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-smaller/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-smaller/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-smaller/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-smaller/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-smaller/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-smaller/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-smaller/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-smaller/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-smaller/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-sticky/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-sticky/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-sticky/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-sticky/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-sticky/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-sticky/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-sticky/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-sticky/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-sticky/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/target-sticky/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/two-containers-preserve-3d/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/two-containers-preserve-3d/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/two-containers-preserve-3d/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/two-containers-preserve-3d/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/two-containers-preserve-3d/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/two-containers-preserve-3d/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/two-containers-preserve-3d/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/two-containers-preserve-3d/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/two-containers-preserve-3d/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/two-containers-preserve-3d/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-mat4-type/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-mat4-type/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-mat4-type/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-mat4-type/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-mat4-type/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-mat4-type/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-mat4-type/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-mat4-type/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-mat4-type/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-mat4-type/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-matrix3d-type/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-matrix3d-type/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-matrix3d-type/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-matrix3d-type/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-matrix3d-type/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-matrix3d-type/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-matrix3d-type/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-matrix3d-type/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-matrix3d-type/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-matrix3d-type/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-subject-border/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-subject-border/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-subject-border/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-subject-border/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-subject-border/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-subject-border/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-subject-border/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-subject-border/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-subject-border/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-subject-border/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-target-border/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-target-border/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-target-border/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-target-border/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-target-border/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-target-border/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-target-border/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-target-border/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-target-border/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-target-border/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-transform-type/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-transform-type/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-transform-type/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-transform-type/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-transform-type/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-transform-type/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-transform-type/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-transform-type/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-transform-type/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-transform-type/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-zero-border/chromium-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-zero-border/chromium-chromium-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-zero-border/firefox-firefox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-zero-border/firefox-firefox-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-zero-border/mobile-chrome-mobile-chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-zero-border/mobile-chrome-mobile-chrome-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-zero-border/mobile-safari-mobile-safari-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-zero-border/mobile-safari-mobile-safari-win32.png -------------------------------------------------------------------------------- /trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-zero-border/webkit-webkit-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anxpara/projectrix/9418234bf27258cc715a0be056fab8bf66dc0d37/trialgrounds/tests/all-trials--toTargetOrigin.test.ts-snapshots/use-zero-border/webkit-webkit-win32.png -------------------------------------------------------------------------------- /trialgrounds/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.svelte-kit/tsconfig.json", 3 | "compilerOptions": { 4 | "allowJs": true, 5 | "checkJs": true, 6 | "esModuleInterop": true, 7 | "forceConsistentCasingInFileNames": true, 8 | "resolveJsonModule": true, 9 | "skipLibCheck": true, 10 | "sourceMap": true, 11 | "strict": true, 12 | "allowSyntheticDefaultImports": true, 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /trialgrounds/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { sveltekit } from '@sveltejs/kit/vite'; 2 | import { defineConfig } from 'vitest/config'; 3 | 4 | export default defineConfig({ 5 | plugins: [sveltekit()], 6 | 7 | build: { 8 | // minify: false, 9 | }, 10 | 11 | test: { 12 | include: ['src/**/*.{test,spec}.{js,ts}'], 13 | }, 14 | 15 | css: { 16 | preprocessorOptions: { 17 | scss: { 18 | additionalData: '@use "src/variables.scss" as *;', 19 | }, 20 | }, 21 | }, 22 | }); 23 | -------------------------------------------------------------------------------- /watch.bsh: -------------------------------------------------------------------------------- 1 | npx watch 'npm run buildForTrials' ./src --------------------------------------------------------------------------------