blob: 00940313b7cd6348ac88bb43ba5d0b4019a9304c [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 CEA LIST and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.interoperability.rpy.geometry.custom;
import org.eclipse.papyrus.interoperability.rpy.geometry.rpygeometry.Point;
import org.eclipse.papyrus.interoperability.rpy.geometry.rpygeometry.impl.PointImpl;
import org.eclipse.papyrus.interoperability.rpy.geometry.utils.PointsOperations;
public class CustomPoint extends PointImpl {
@Override
public Point add(Point point) {
return PointsOperations.add(this, point);
}
@Override
public Point minus() {
return PointsOperations.minus(this);
}
@Override
public Point minus(Point point) {
return PointsOperations.minus(this, point);
}
/**
* @see org.eclipse.papyrus.interoperability.rpy.geometry.rpygeometry.impl.PointImpl#getIntX()
*
* @return
*/
@Override
public Integer getIntX() {
return PointsOperations.getIntX(this);
}
/**
* @see org.eclipse.papyrus.interoperability.rpy.geometry.rpygeometry.impl.PointImpl#getIntY()
*
* @return
*/
@Override
public Integer getIntY() {
return PointsOperations.getIntY(this);
}
}