aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains/RealTimeGraphEx
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2018-06-15 15:22:11 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2018-06-15 15:22:11 +0300
commit84700eb44cffe4b503a9ad22b1dfa8c703f356d2 (patch)
tree53b152ffd2e2ac09d4e30e72c26cb9441049ce9b /Software/Visual_Studio/SideChains/RealTimeGraphEx
parent52da473c1a7bf1f3e1c3d7690f980d5afdc3f960 (diff)
downloadTango-84700eb44cffe4b503a9ad22b1dfa8c703f356d2.tar.gz
Tango-84700eb44cffe4b503a9ad22b1dfa8c703f356d2.zip
Improved LightTouchDataGrid Selection.
Diffstat (limited to 'Software/Visual_Studio/SideChains/RealTimeGraphEx')
-rw-r--r--Software/Visual_Studio/SideChains/RealTimeGraphEx/DirectXGraphs/RealTimeGraphExDirectXLineScroll.cs11
-rw-r--r--Software/Visual_Studio/SideChains/RealTimeGraphEx/ReachGraphs/RealTimeGraphExReachLineScroll.cs11
-rw-r--r--Software/Visual_Studio/SideChains/RealTimeGraphEx/WriteableBitmap/WriteableBitmapBlitExtensions.cs2
3 files changed, 0 insertions, 24 deletions
diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphEx/DirectXGraphs/RealTimeGraphExDirectXLineScroll.cs b/Software/Visual_Studio/SideChains/RealTimeGraphEx/DirectXGraphs/RealTimeGraphExDirectXLineScroll.cs
index e85d56a4d..0d1284c19 100644
--- a/Software/Visual_Studio/SideChains/RealTimeGraphEx/DirectXGraphs/RealTimeGraphExDirectXLineScroll.cs
+++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/DirectXGraphs/RealTimeGraphExDirectXLineScroll.cs
@@ -45,17 +45,6 @@ namespace RealTimeGraphEx.DirectXGraphs
#region Properties
- /// <summary>
- /// Gets or sets the maximum vectorsCollection to display on the graph (default 1000, affects performance).
- /// </summary>
- public int MaxPoints
- {
- get { return (int)GetValue(MaxPointsProperty); }
- set { SetValue(MaxPointsProperty, value); }
- }
- public static readonly DependencyProperty MaxPointsProperty =
- DependencyProperty.Register("MaxPoints", typeof(int), typeof(RealTimeGraphExDirectXLineScroll), new PropertyMetadata(1000, new PropertyChangedCallback(CrossModelChanged)));
-
/// <summary>
/// Gets or sets the graph fill color.
diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphEx/ReachGraphs/RealTimeGraphExReachLineScroll.cs b/Software/Visual_Studio/SideChains/RealTimeGraphEx/ReachGraphs/RealTimeGraphExReachLineScroll.cs
index 77ac77479..d4026f7c3 100644
--- a/Software/Visual_Studio/SideChains/RealTimeGraphEx/ReachGraphs/RealTimeGraphExReachLineScroll.cs
+++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/ReachGraphs/RealTimeGraphExReachLineScroll.cs
@@ -37,17 +37,6 @@ namespace RealTimeGraphEx.ReachGraphs
#region Properties
/// <summary>
- /// Gets or sets the maximum points to display on the graph (default 1000, affects performance).
- /// </summary>
- public int MaxPoints
- {
- get { return (int)GetValue(MaxPointsProperty); }
- set { SetValue(MaxPointsProperty, value); }
- }
- public static readonly DependencyProperty MaxPointsProperty =
- DependencyProperty.Register("MaxPoints", typeof(int), typeof(RealTimeGraphExReachLineScroll), new PropertyMetadata(1000, new PropertyChangedCallback(CrossModelChanged)));
-
- /// <summary>
/// Gets or sets the graph strokes color.
/// </summary>
public Brush Stroke
diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphEx/WriteableBitmap/WriteableBitmapBlitExtensions.cs b/Software/Visual_Studio/SideChains/RealTimeGraphEx/WriteableBitmap/WriteableBitmapBlitExtensions.cs
index 4219983d2..f52b515b8 100644
--- a/Software/Visual_Studio/SideChains/RealTimeGraphEx/WriteableBitmap/WriteableBitmapBlitExtensions.cs
+++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/WriteableBitmap/WriteableBitmapBlitExtensions.cs
@@ -382,8 +382,6 @@ namespace System.Windows.Media.Imaging
internal static void Blit(BitmapContext destContext, int dpw, int dph, Rect destRect, BitmapContext srcContext, Rect sourceRect, int sourceWidth)
{
- const BlendMode blendMode = BlendMode.Alpha;
-
int dw = (int)destRect.Width;
int dh = (int)destRect.Height;