8 instantiations of Lazy
System.Windows.Input.Manipulations (8)
System\Windows\Input\Manipulations\ManipulationVelocities2D.cs (8)
90
this.linearVelocityX = new
Lazy
<float>(linearVelocityX);
91
this.linearVelocityY = new
Lazy
<float>(linearVelocityY);
92
this.angularVelocity = new
Lazy
<float>(angularVelocity);
93
this.expansionVelocity = new
Lazy
<float>(expansionVelocity);
114
this.linearVelocityX = new
Lazy
<float>(getLinearVelocityX);
115
this.linearVelocityY = new
Lazy
<float>(getLinearVelocityY);
116
this.angularVelocity = new
Lazy
<float>(getAngularVelocity);
117
this.expansionVelocity = new
Lazy
<float>(getExpansionVelocity);
4 references to Lazy
System.Windows.Input.Manipulations (4)
System\Windows\Input\Manipulations\ManipulationVelocities2D.cs (4)
20
private readonly
Lazy
<float> linearVelocityX;
21
private readonly
Lazy
<float> linearVelocityY;
22
private readonly
Lazy
<float> angularVelocity;
23
private readonly
Lazy
<float> expansionVelocity;