All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.electric.util.math.ECoord Maven / Gradle / Ivy

The newest version!
/* -*- tab-width: 4 -*-
 *
 * Electric(tm) VLSI Design System
 *
 * File: ECoord.java
 * Written by: Dmitry Nadezhin, Sun Microsystems.
 *
 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
 *
 * Electric(tm) is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * Electric(tm) is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Electric(tm); see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, Mass 02111-1307, USA.
 */
package com.sun.electric.util.math;

/**
 * Fixed-point number aligned at Electric database grid.
 */
public class ECoord extends FixpCoord {
    
    public static final ECoord MIN_ECOORD = new ECoord(Long.MIN_VALUE);
    public static final ECoord MAX_ECOORD = new ECoord(Long.MIN_VALUE - (1L << FRACTION_BITS));
    
    ECoord(long fixp) {
        super(fixp);
        assert (fixp & FRACTION_MASK) == 0;
    }
    
    /**
     * Create ECoord object from database grid units
     * @param grid coordinate in database grid units
     * @return ECoord object
     */
    public static ECoord fromGrid(long grid) {
        return fromAlignedFixp(grid << FRACTION_BITS);
    }
    
    /**
     * Returns this coordinate in database grid units.
     * @return this coordinate in database grid units.
     */
    public long getGrid() {
        return getFixp() >> FRACTION_BITS;
    }
    
    /**
     * Returns sum of two coordinats.
     * @param y second coordinate.
     * @return sum of two coordinates.
     */
    public ECoord add(ECoord y) {
        long xFixp = this.getFixp();
        long yFixp = y.getFixp();
        if (yFixp == 0) {
            return this;
        } else if (xFixp == 0) {
            return y;
        } else {
            return fromAlignedFixp(xFixp + yFixp);
        }
    }

    /**
     * Returns difference of two coordinats.
     * @param y second coordinate.
     * @return difference of two coordinates.
     */
    public ECoord subtract(ECoord y) {
        long xFixp = this.getFixp();
        long yFixp = y.getFixp();
        if (yFixp == 0) {
            return this;
        } else {
            return fromAlignedFixp(xFixp - yFixp);
        }
    }

    /**
     * Returns product of this coordinate by long multiplier.
     * @param scale multiplier
     * @return product of this coordinate by long multiplier.
     */
    @Override
    public ECoord multiply(long scale) {
        if (scale == 1) {
            return this;
        }
        return fromAlignedFixp(getFixp() * scale);
    }

    /**
     * Returns minimum of two coordinats.
     * @param y second coordinate.
     * @return minimum of two coordinates.
     */
    public ECoord min(ECoord y) {
        return this.getFixp() <= y.getFixp() ? this : y;
    }

    /**
     * Returns maximum of two coordinats.
     * @param y second coordinate.
     * @return maximum of two coordinates.
     */
    public ECoord max(ECoord y) {
        return this.getFixp() >= y.getFixp() ? this : y;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy