2012-02-03 16:39:15 -08:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
2012-05-21 04:12:37 -07:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2012-02-03 16:39:15 -08:00
|
|
|
|
|
|
|
package org.mozilla.gecko.gfx;
|
|
|
|
|
|
|
|
public class ViewTransform {
|
|
|
|
public float x;
|
|
|
|
public float y;
|
|
|
|
public float scale;
|
|
|
|
|
|
|
|
public ViewTransform(float inX, float inY, float inScale) {
|
|
|
|
x = inX;
|
|
|
|
y = inY;
|
|
|
|
scale = inScale;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|