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

net.sourceforge.plantuml.klimt.compress.PiecewiseAffineComposition Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.klimt.compress;

public class PiecewiseAffineComposition implements PiecewiseAffineTransform {
    // ::remove file when __HAXE__

	private final PiecewiseAffineComposition first;
	private final PiecewiseAffineComposition second;

	public PiecewiseAffineComposition(PiecewiseAffineComposition first, PiecewiseAffineComposition second) {
		this.first = first;
		this.second = second;
	}

	public double transform(double v) {
		return second.transform(first.transform(v));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy