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

Side by Side Diff: sky/engine/core/painting/Size.dart

Issue 1156383004: Add the floating action button to stocks2 (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 unified diff | Download patch
« no previous file with comments | « no previous file | sky/examples/stocks2/lib/stock_app.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 part of dart.sky; 5 part of dart.sky;
6 6
7 /// Holds a 2D floating-point size. 7 /// Holds a 2D floating-point size.
8 /// Think of this as a vector from Point(0,0) to Point(size.width, size.height) 8 /// Think of this as a vector from Point(0,0) to Point(size.width, size.height)
9 class Size { 9 class Size {
10 final double width; 10 final double width;
11 final double height; 11 final double height;
12 12
13 const Size(this.width, this.height); 13 const Size(this.width, this.height);
14 14
15 const Size.fromWidth(this.width) : height = double.INFINITY; 15 const Size.fromWidth(this.width) : height = double.INFINITY;
16 const Size.fromHeight(this.height) : width = double.INFINITY; 16 const Size.fromHeight(this.height) : width = double.INFINITY;
17 17
18 static const Size infinite = const Size(double.INFINITY, double.INFINITY); 18 static const Size infinite = const Size(double.INFINITY, double.INFINITY);
19 19
20 bool operator ==(other) => other is Size && width == other.width && height == other.height; 20 bool operator ==(other) => other is Size && width == other.width && height == other.height;
21 Size operator +(Size other) => new Size(width + other.width, height + other.he ight);
22 Size operator -(Size other) => new Size(width - other.width, height - other.he ight);
21 23
22 // does the equivalent of "return new Point(0,0) + this" 24 // does the equivalent of "return new Point(0,0) + this"
23 Point toPoint() => new Point(this.width, this.height); 25 Point toPoint() => new Point(this.width, this.height);
24 26
25 int get hashCode { 27 int get hashCode {
26 int result = 373; 28 int result = 373;
27 result = 37 * result + width.hashCode; 29 result = 37 * result + width.hashCode;
28 result = 37 * result + height.hashCode; 30 result = 37 * result + height.hashCode;
29 return result; 31 return result;
30 } 32 }
31 String toString() => "Size($width, $height)"; 33 String toString() => "Size($width, $height)";
32 } 34 }
OLDNEW
« no previous file with comments | « no previous file | sky/examples/stocks2/lib/stock_app.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698