You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
transformTabletToView.Children.Add(newMatrixTransform(_stylusLogic.GetTabletToViewTransform(stylusDevice.CriticalActiveSource,stylusDevice.TabletDevice)));// this gives matrix in measured units (not device)
443
+
transformTabletToView.Children.Add(newMatrixTransform(_stylusLogic.GetTabletToViewTransform(stylusDevice.CriticalActiveSource??inputReport.InputSource,stylusDevice.TabletDevice)));// this gives matrix in measured units (not device)
444
444
transformTabletToView.Children.Add(currentPic.ViewToElement);// Make it relative to the element.
445
445
transformTabletToView.Freeze();// Must be frozen for multi-threaded access.
transformTabletToView.Children.Add(newMatrixTransform(_stylusLogic.GetTabletToViewTransform(stylusDevice.CriticalActiveSource,stylusDevice.TabletDevice)));// this gives matrix in measured units (not device)
462
+
transformTabletToView.Children.Add(newMatrixTransform(_stylusLogic.GetTabletToViewTransform(stylusDevice.CriticalActiveSource??inputReport.InputSource,stylusDevice.TabletDevice)));// this gives matrix in measured units (not device)
463
463
transformTabletToView.Children.Add(pic.ViewToElement);// Make it relative to the element.
464
464
transformTabletToView.Freeze();// Must be frozen for multi-threaded access.
transformTabletToView.Children.Add(newMatrixTransform(GetTabletToViewTransform(stylusDevice.CriticalActiveSource,stylusDevice.TabletDevice)));// this gives matrix in measured units (not device)
transformTabletToView.Children.Add(newMatrixTransform(GetTabletToViewTransform(stylusDevice.CriticalActiveSource,stylusDevice.TabletDevice)));// this gives matrix in measured units (not device)
2693
+
transformTabletToView.Children.Add(newMatrixTransform(GetTabletToViewTransform(stylusDevice.CriticalActiveSource??rawStylusInputReport.InputSource,stylusDevice.TabletDevice)));// this gives matrix in measured units (not device)
2693
2694
transformTabletToView.Children.Add(currentTarget.ViewToElement);// Make it relative to the element.
2694
2695
transformTabletToView.Freeze();// Must be frozen for multi-threaded access.
0 commit comments