// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.philips.lighting.hue.sdk.utilities.impl; public class PointF { public float x; public float y; public PointF() { } public PointF(float f, float f1) { x = f; y = f1; } public final boolean equals(float f, float f1) { return x == f && y == f1; } public final void negate() { x = -x; y = -y; } public final void offset(float f, float f1) { x = x + f; y = y + f1; } public final void set(float f, float f1) { x = f; y = f1; } public final void set(PointF pointf) { x = pointf.x; y = pointf.y; } }