com.actelion.research.chem.DepictorTransformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
/*
* Copyright (c) 1997 - 2016
* Actelion Pharmaceuticals Ltd.
* Gewerbestrasse 16
* CH-4123 Allschwil, Switzerland
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of the the copyright holder nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
package com.actelion.research.chem;
import com.actelion.research.gui.generic.GenericPoint;
import com.actelion.research.gui.generic.GenericRectangle;
public class DepictorTransformation {
private double mOffsetX,mOffsetY,mScaling;
public DepictorTransformation() {
clear();
}
public DepictorTransformation(DepictorTransformation t) {
mScaling = t.mScaling;
mOffsetX = t.mOffsetX;
mOffsetY = t.mOffsetY;
}
public DepictorTransformation(double scaling, double offsetX, double offsetY) {
mScaling = scaling;
mOffsetX = offsetX;
mOffsetY = offsetY;
}
public DepictorTransformation(GenericRectangle bounds,
GenericRectangle view,
double averageBondLength,
int mode) {
// calculates transformation needed to transfer bounds into view considering mode.
// averageBondLength may be 0 if (mode & cModeInflateToMaxAVBL) == 0.
clear();
if (view != null) {
if ((mode & AbstractDepictor.cModeInflateToAVBL) == 0) {
// check if bounds fit in view. If not then center and reduce if needed
if (!view.contains(bounds)) {
if ((bounds.width > view.width) || (bounds.height > view.height)) {
double hScaling = view.width / bounds.width;
double vScaling = view.height / bounds.height;
mScaling = Math.min(hScaling, vScaling);
}
if (bounds.x*mScaling < view.x)
mOffsetX = view.x - bounds.x*mScaling;
else if ((bounds.x+bounds.width)*mScaling > view.x+view.width)
mOffsetX = view.x+view.width - (bounds.x+bounds.width)*mScaling;
if (bounds.y*mScaling < view.y)
mOffsetY = view.y - bounds.y*mScaling;
else if ((bounds.y+bounds.height)*mScaling > view.y+view.height)
mOffsetY = view.y+view.height - (bounds.y+bounds.height)*mScaling;
// for keeping all stuff centered do the following:
// mOffsetX = view.x+view.width/2.0 - mScaling*(bounds.x+bounds.width/2.0);
// mOffsetY = view.y+view.height/2.0 - mScaling*(bounds.y+bounds.height/2.0);
}
}
else {
// inflate to maximum bond length or maximum that fits
double hScaling = view.width / bounds.width;
double vScaling = view.height / bounds.height;
double maxAVBL = mode & AbstractDepictor.cModeMaxBondLength;
if (maxAVBL == 0)
maxAVBL = AbstractDepictor.cOptAvBondLen;
else if ((mode & AbstractDepictor.cModeInflateToHighResAVBL) != 0)
maxAVBL /= 256;
double bScaling = maxAVBL / averageBondLength;
mScaling = Math.min(bScaling, Math.min(hScaling, vScaling));
mOffsetX = view.x+view.width/2.0f - mScaling*(bounds.x+bounds.width/2.0f);
mOffsetY = view.y+view.height/2.0f - mScaling*(bounds.y+bounds.height/2.0f);
}
}
else if ((mode & AbstractDepictor.cModeInflateToMaxAVBL) != 0) {
double maxAVBL = ((mode & AbstractDepictor.cModeMaxBondLength) != 0) ?
mode & AbstractDepictor.cModeMaxBondLength : AbstractDepictor.cOptAvBondLen;
mScaling = maxAVBL / averageBondLength;
}
}
public void clear() {
mOffsetX = 0.0f;
mOffsetY = 0.0f;
mScaling = 1.0f;
}
public double transformX(double x) {
return x*mScaling+mOffsetX;
}
public double transformY(double y) {
return y*mScaling+mOffsetY;
}
public double getScaling() {
return mScaling;
}
public double getOffsetX()
{
return mOffsetX;
}
public double getOffsetY()
{
return mOffsetY;
}
public void move(double dx, double dy) {
mOffsetX += dx;
mOffsetY += dy;
}
public void setScaling(double scale) {
mScaling = scale;
}
public boolean isVoidTransformation() {
return (mScaling == 1.0 && mOffsetX == 0.0 && mOffsetY == 0.0);
}
public void applyTo(DepictorTransformation t) {
t.mScaling *= mScaling;
t.mOffsetX = t.mOffsetX * mScaling + mOffsetX;
t.mOffsetY = t.mOffsetY * mScaling + mOffsetY;
}
public void applyTo(GenericPoint p) {
p.x = p.x * mScaling + mOffsetX;
p.y = p.y * mScaling + mOffsetY;
}
public void applyTo(GenericRectangle r) {
r.x = r.x * mScaling + mOffsetX;
r.y = r.y * mScaling + mOffsetY;
r.width *= mScaling;
r.height *= mScaling;
}
public void applyTo(Molecule m) {
m.scaleCoords(mScaling);
m.translateCoords(mOffsetX, mOffsetY);
}
public void applyTo(AbstractDrawingObject o) {
o.scale(mScaling);
o.move(mOffsetX, mOffsetY);
}
public DepictorTransformation getInverseTransformation() {
DepictorTransformation t = new DepictorTransformation();
t.mScaling = 1.0f / mScaling;
t.mOffsetX = -mOffsetX / mScaling;
t.mOffsetY = -mOffsetY / mScaling;
return t;
}
public String toString() {
return "DepictorTransformation Offset: " + mOffsetX +"," + mOffsetY + " Scaling: " + mScaling;
}
}