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

Unified Diff: sky/examples/raw/spinning_arabic.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/raw/spinning_arabic.dart
diff --git a/sky/examples/raw/spinning_arabic.dart b/sky/examples/raw/spinning_arabic.dart
deleted file mode 100644
index c48281732a05d0fd50ffb2eea82e742b27a718d1..0000000000000000000000000000000000000000
--- a/sky/examples/raw/spinning_arabic.dart
+++ /dev/null
@@ -1,48 +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:math" as math;
-import 'dart:sky';
-
-double timeBase = null;
-LayoutRoot layoutRoot = new LayoutRoot();
-
-void beginFrame(double timeStamp) {
- if (timeBase == null)
- timeBase = timeStamp;
- double delta = timeStamp - timeBase;
- PictureRecorder recorder = new PictureRecorder();
- Canvas canvas = new Canvas(recorder, view.width, view.height);
- canvas.translate(view.width / 2.0, view.height / 2.0);
- canvas.rotate(math.PI * delta / 1800);
- canvas.drawRect(new Rect.fromLTRB(-100.0, -100.0, 100.0, 100.0),
- new Paint()..color = const Color.fromARGB(255, 0, 255, 0));
-
- double sin = math.sin(delta / 200);
- layoutRoot.maxWidth = 150.0 + (50 * sin);
- layoutRoot.layout();
-
- canvas.translate(layoutRoot.maxWidth / -2.0, (layoutRoot.maxWidth / 2.0) - 125);
- layoutRoot.paint(canvas);
-
- view.picture = recorder.endRecording();
- view.scheduleFrame();
-}
-
-void main() {
- var document = new Document();
- var arabic = document.createText("هذا هو قليلا طويلة من النص الذي يجب التفاف .");
- var more = document.createText(" و أكثر قليلا لجعله أطول. ");
- var block = document.createElement('p');
- block.style['display'] = 'paragraph';
- block.style['direction'] = 'rtl';
- block.style['unicode-bidi'] = 'plaintext';
- block.appendChild(arabic);
- block.appendChild(more);
-
- layoutRoot.rootElement = block;
-
- view.setBeginFrameCallback(beginFrame);
- view.scheduleFrame();
-}

Powered by Google App Engine
This is Rietveld 408576698