/* * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.font.directwrite; class D2D1_POINT_2F { D2D1_POINT_2F() { } D2D1_POINT_2F(float x, float y) { this.x = x; this.y = y; } float x; float y; }