Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(294)

Unified Diff: sky/examples/rendering/spinning_flex.dart

Issue 1218593002: Move sky/examples to sky/sdk/lib/example, and code changes to support that change. Fixes T277. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sky/examples/rendering/spinning_flex.dart
diff --git a/sky/examples/rendering/spinning_flex.dart b/sky/examples/rendering/spinning_flex.dart
deleted file mode 100644
index 3e1d5504648631a2c6ec71bc391f93dca38dc86e..0000000000000000000000000000000000000000
--- a/sky/examples/rendering/spinning_flex.dart
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-import 'dart:sky' as sky;
-import 'dart:math' as math;
-
-import 'package:sky/base/scheduler.dart';
-import 'package:sky/rendering/box.dart';
-import 'package:sky/rendering/flex.dart';
-import 'package:sky/rendering/sky_binding.dart';
-import 'package:vector_math/vector_math.dart';
-
-import '../lib/solid_color_box.dart';
-
-double timeBase;
-RenderTransform transformBox;
-
-void main() {
- RenderFlex flexRoot = new RenderFlex(direction: FlexDirection.vertical);
-
- void addFlexChildSolidColor(RenderFlex parent, sky.Color backgroundColor, { int flex: 0 }) {
- RenderSolidColorBox child = new RenderSolidColorBox(backgroundColor);
- parent.add(child);
- child.parentData.flex = flex;
- }
-
- addFlexChildSolidColor(flexRoot, const sky.Color(0xFFFF00FF), flex: 1);
- addFlexChildSolidColor(flexRoot, const sky.Color(0xFFFFFF00), flex: 2);
- addFlexChildSolidColor(flexRoot, const sky.Color(0xFF00FFFF), flex: 1);
-
- transformBox = new RenderTransform(child: flexRoot, transform: new Matrix4.identity());
-
- RenderPadding root = new RenderPadding(padding: new EdgeDims.all(20.0), child: transformBox);
-
- new SkyBinding(root: root);
-
- addPersistentFrameCallback(rotate);
-}
-
-void rotate(double timeStamp) {
- if (timeBase == null)
- timeBase = timeStamp;
- double delta = (timeStamp - timeBase) / 1000; // radians
-
- transformBox.setIdentity();
- transformBox.translate(transformBox.size.width / 2.0, transformBox.size.height / 2.0);
- transformBox.rotateZ(delta);
- transformBox.translate(-transformBox.size.width / 2.0, -transformBox.size.height / 2.0);
-}

Powered by Google App Engine
This is Rietveld 408576698