- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我确定它在某处,但我找不到它。
我有一个标准
StrokeCollection strokes
集合中的每个笔划都由一个点数组组成。因此,这是锯齿状的点数组,Point[][]
我需要找到 StrokeCollection 中最左边和最右边的点。这是如何用 linq 完成的?
这基本上就是我正在尝试做的(没有成功):
var x = from stroke in strokes
from point in stroke
where min(point.x)
select point
如有任何帮助,我们将不胜感激。
编辑:显然直接使用墨水笔点存在一些问题,所以让
Point[][] myStrokeCollection = new Point[strokes.Count][];
for (int i = 0; i < strokes.Count; i++)
{
// creating a one-dimensional array of StylusPoints for the i row of myStrokeCollection.
myStrokeCollection[i] = new Point[strokes[i].StylusPoints.Count];
for (int j = 0; j < strokes[i].StylusPoints.Count; j++)
{
myStrokeCollection[i][j] = new Point();
myStrokeCollection[i][j].X = strokes[i].StylusPoints[j].X;
myStrokeCollection[i][j].Y = strokes[i].StylusPoints[j].Y;
}
}
是否可以使用 linq(一次性通过?)为 myStrokeCollection 获得最左边的点 (x,y) 和最右边的点 (x,y)? (希望没有定义额外的类型)。
最佳答案
Here is what needs to be done
var leftMostVal = strokeCollection.Min(p => p.Point.Min(q => q.Min(r => r.X)));
var rightMostVal = strokeCollection.Max(p => p.Point.Max(q => q.Max(r => r.X)));
Here is fiddle https://dotnetfiddle.net/y5hZ7w
Or
public class StrokeCollection : List<Stroke>
{
}
public class Stroke : List<Point>
{
public Point[][] Points { get; set; }
}
class Program
{
static void Main(string[] args)
{
StrokeCollection lst = new StrokeCollection();
Random rnd1 = new Random(3);
Random rnd2 = new Random(13);
for (int i = 0; i < 10; i++)
{
int x = rnd1.Next(1, 5);
var s = new Stroke { Points = new Point[x][] };
foreach (var r in Enumerable.Range(0, x))
{
int y = rnd1.Next(1, 5);
s.Points[r] = new Point[y];
for (int j = 0; j < y; j++)
s.Points[r][j] = new Point(rnd2.Next(-50, 80), rnd2.Next(-20, 20));
}
lst.Add(s);
}
Point leftMostPoint = Point.Empty;
Point rightMostPoint = Point.Empty;
lst.ForEach(p1 =>
{
foreach (Point[] p2 in p1.Points)
{
foreach (var p3 in p2)
{
if (leftMostPoint == Point.Empty)
leftMostPoint = p3;
if (rightMostPoint == Point.Empty)
rightMostPoint = p3;
if (p3.X < leftMostPoint.X)
leftMostPoint = p3;
if (p3.X > rightMostPoint.X)
rightMostPoint = p3;
}
}
});
Console.WriteLine("Leftmost point " + leftMostPoint.ToString());
Console.WriteLine("Rightmost point " + rightMostPoint.ToString());
}
}
编辑:更新这是你最终需要的
System.Windows.Ink.StrokeCollection strokeCollection; //Set it to whatever resultant you want collection to set
var l1 = strokeCollection.SelectMany(p => p.StylusPoints)
.GroupBy(p => p.X)
.OrderBy(p => p.Key)
.ToList();
StylusPoint leftPoint = l1.First().FirstOrDefault();
StylusPoint rightPoint = l1.Last().FirstOrDefault();
关于c# - 使用 linq 查找锯齿状数组中最左边和最右边的点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27996711/
我必须为 IE11 编写一些网格回退。 我想将元素 4 放在右下角,以便元素 1 可以一直向下延伸到底部吗? 我认为这对 flexbox 来说是不可能的,对吧? : https://jsfiddle.
您好,我正在尝试让 2 个 div 在左侧与右侧对齐。 #div1 #div2 #div1 #div2 #div3 #div2 #div3 #div3 诀窍是当浏览器窗口变小时,我希望#div2 位于
如何才能点击 EditText 的右侧可绘制对象(查看屏幕截图)?我尝试了几种方法,但总是卡住。 public static Matcher withEditTextDrawable(final in
这个问题在这里已经有了答案: In CSS Flexbox, why are there no "justify-items" and "justify-self" properties? (6
所以我有 10 个复选框,每个标签都取自数组中相应的索引。我正在使用 ng-repeat 来展示它们: {{entity}}
我是一名优秀的程序员,十分优秀!