Skip to content
Snippets Groups Projects
Commit e05ea922 authored by Dominique Blouin's avatar Dominique Blouin
Browse files

Code cleanup

parent 078ac93a
No related branches found
No related tags found
No related merge requests found
......@@ -36,13 +36,8 @@
* knowledge of the CeCILL license and that you accept its terms.
*/
package ui;
//import java.awt.*;
/**
* Class TGCScalableWithInternalComponent
* Graphical component that contains one or more internal components, and which is scalable
......@@ -65,7 +60,7 @@ public abstract class TGCScalableWithInternalComponent extends TGCWithInternalCo
dheight = (height + dheight) / oldScaleFactor * scaleFactor;
dx = (dx + x) / oldScaleFactor * scaleFactor;
dy = (dy + y) / oldScaleFactor * scaleFactor;
dMinWidth = (minWidth + dMinWidth) / oldScaleFactor * scaleFactor;
dMinWidth = (minWidth + dMinWidth) / oldScaleFactor * scaleFactor;
dMinHeight = (minHeight + dMinHeight) / oldScaleFactor * scaleFactor;
dMaxWidth = (maxWidth + dMaxWidth) / oldScaleFactor * scaleFactor;
dMaxHeight = (maxHeight + dMaxHeight) / oldScaleFactor * scaleFactor;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment