Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
iscle committed Oct 28, 2021
1 parent b8f82ed commit 2ab3c7e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@

public class OpenWatchFace {
/**
* The OpenWatch WatchFace format version
* The OpenWatchFace format version
*/
private static final int VERSION = 1;

/**
* The width in pixels for which this WatchFace was designed for.
* The width in pixels for which this watch face was designed for.
*/
private final int width;

/**
* The height in pixels for which this WatchFace was designed for.
* The height in pixels for which this watch face was designed for.
*/
private final int height;

/**
* The items that form this WatchFace.
* The items that form this watch face.
*/
private final ArrayList<Item> items;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
package org.openwatchproject.openwatchfaceview.item;

public abstract class Item {
private static final String TAG = "AbstractItem";

/**
* Indicates the (width) center for the item in pixels
* Indicates the horizontal center for the item in pixels.
*/
final int centerX;

/**
* Indicates the (height) center for the item in pixels
* Indicates the vertical center for the item in pixels.
*/
final int centerY;

Expand Down

0 comments on commit 2ab3c7e

Please sign in to comment.