本文整理匯總了C#中Animation.LinkMany方法的典型用法代碼示例。如果您正苦於以下問題:C# Animation.LinkMany方法的具體用法?C# Animation.LinkMany怎麽用?C# Animation.LinkMany使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Animation
的用法示例。
在下文中一共展示了Animation.LinkMany方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: CreateNetworkAnimation
private static Animation CreateNetworkAnimation(Animation animation, Ani<GraphMessages> state, Lifetime life)
{
// --- end points
// timeline
animation.LinkMany(
state.Select(s => s.Graph.EndPoints.Select(
p => new LineSegmentDesc(
new Point(s.Graph.GetX(p.Skew), s.Graph.GetY(p)).Sweep(new Vector(1000, 0)),
Brushes.Black,
3))),
life);
// timeline label
animation.LinkMany(
state.Select(s => s.Graph.EndPoints.Select(
p => new TextDesc(
text: p.Name,
pos: new Point(s.Graph.GetX(p.Skew), s.Graph.GetY(p)),
fontWeight: FontWeights.Bold,
reference: new Point(1.1, 0.5)))),
life);
// tick marks
animation.LinkMany(
state.Select(s => s.Graph.EndPoints.SelectMany(
p => 10.Range().Select(
j => new LineSegmentDesc(
new Point(s.Graph.GetX(p.Skew + j.Seconds()), s.Graph.GetY(p) - 5).Sweep(new Vector(0, 10)),
Brushes.Black,
2)))),
life);
// tick labels
animation.LinkMany(
state.Select(s => s.Graph.EndPoints.SelectMany(
p => 10.Range().Select(
j => new TextDesc(
text: (j + "s"),
pos: new Point(s.Graph.GetX(p.Skew + j.Seconds()), s.Graph.GetY(p) - 5) + new Vector(0, -2),
fontSize: 10)))),
life);
// --- measurements
var measurements =
from s in state
select from m in s.Measurements
let x1 = s.Graph.GetX(m.X1)
let y1 = s.Graph.GetY(m.V1)
let x2 = s.Graph.GetX(m.X2)
let y2 = s.Graph.GetY(m.V2)
let y = m.Y ?? ((y1 + y2)/2)
select new {s, m, x1, y1, x2, y2, y};
animation.LinkMany(
measurements.LiftSelect(
e => new LineSegmentDesc(
new LineSegment(new Point(e.x1, e.y), new Point(e.x2, e.y)),
Brushes.Black,
2,
1)),
life);
animation.LinkMany(
measurements.LiftSelect(
e => new LineSegmentDesc(
new LineSegment(new Point(e.x1, e.y1), new Point(e.x1, e.y)),
Brushes.Red,
dashed: 1)),
life);
animation.LinkMany(
measurements.LiftSelect(
e => new LineSegmentDesc(
new LineSegment(new Point(e.x2, e.y2), new Point(e.x2, e.y)),
Brushes.Red,
dashed: 1)),
life);
var off1 = new Vector(5, -5);
var off2 = new Vector(5, 12);
animation.LinkMany(
measurements.LiftSelect(
e => new TextDesc(
text: e.m.Text,
pos: new Point(Math.Max(e.x1, e.x2), e.y) + off1.Rotate(e.m.Angle),
direction: e.m.Angle)),
life);
animation.LinkMany(
measurements.LiftSelect(
e => new TextDesc(
text: string.Format("{0:0.00}s", (e.m.X2 - e.m.X1).TotalSeconds),
pos: new Point(Math.Max(e.x1, e.x2), e.y) + off2.Rotate(e.m.Angle),
direction: e.m.Angle)),
life);
// messages
animation.LinkMany(
state.Select(e => e.Messages).LiftSelect(
e => new LineSegmentDesc(
e.Pos,
Brushes.Black)),
life);
animation.LinkMany(
state.Select(e => e.Messages.SelectMany(
m => new[] {m.PosSourcePoint, m.PosEndPoint}.Select(
p => new PointDesc(
p,
//.........這裏部分代碼省略.........