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

com.g2forge.enigma.presentation.layout.StandardLayoutContent Maven / Gradle / Ivy

package com.g2forge.enigma.presentation.layout;

import java.awt.Dimension;
import java.awt.geom.Rectangle2D;

import org.apache.poi.xslf.usermodel.XSLFSimpleShape;

import lombok.AllArgsConstructor;

@AllArgsConstructor
public class StandardLayoutContent implements ILayoutContent {
	protected final XSLFSimpleShape target;

	public void anchor(Rectangle2D anchor, Dimension content, boolean lockAspectRatio) {
		target.setAnchor(ILayoutContent.computeCenterAndScale(anchor, content, lockAspectRatio));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy