Edit C:\Program Files\Java\jdk1.8.0_121\com\sun\javafx\geom\Vec4d.java
/* * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.geom; /** * A 4-dimensional, double-precision, floating-point vector. * */ public class Vec4d { /** * The x coordinate. */ public double x; /** * The y coordinate. */ public double y; /** * The z coordinate. */ public double z; /** * The w coordinate. */ public double w; public Vec4d() { } public Vec4d(Vec4d v) { this.x = v.x; this.y = v.y; this.z = v.z; this.w = v.w; } public Vec4d(double x, double y, double z, double w) { this.x = x; this.y = y; this.z = z; this.w = w; } public void set(Vec4d v) { this.x = v.x; this.y = v.y; this.z = v.z; this.w = v.w; } }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de