Browse Source
Merge branch 'master' into box-shadow-api-fixes
pull/3939/head
Dariusz Komosiński
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
samples/RenderDemo/Controls/LineBoundsDemoControl.cs
|
|
|
@ -17,7 +17,7 @@ namespace RenderDemo.Controls |
|
|
|
public LineBoundsDemoControl() |
|
|
|
{ |
|
|
|
var timer = new DispatcherTimer(); |
|
|
|
timer.Interval = TimeSpan.FromSeconds(1 / 60); |
|
|
|
timer.Interval = TimeSpan.FromSeconds(1 / 60.0); |
|
|
|
timer.Tick += (sender, e) => Angle += Math.PI / 360; |
|
|
|
timer.Start(); |
|
|
|
} |
|
|
|
|