Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 part of dart.sky; | |
| 6 | |
| 7 /// Holds a 4x4 Matrix in column-major format. Designed as a lightweight | |
| 8 /// wrapper around a Float32List, used for passing a Matrix4 to C++. | |
| 9 class Matrix4 { | |
| 10 final Float32List _value; | |
| 11 Float32List get storage => _value; | |
| 12 | |
| 13 Matrix4(this._value); | |
| 14 } | |
| OLD | NEW |